您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Show a Tumblr's original posts using a third-party service.
当前为
// ==UserScript== // @include *://*.tumblr.com/* // @grant GM_registerMenuCommand // @name Tumblr Original Posts // @description Show a Tumblr's original posts using a third-party service. // @version 0.0.1.20170326191916 // @namespace https://greasyfork.org/users/112442 // ==/UserScript== function tumblrNewTab(){ let name = window.location.host.split('.')[0]; window.open('http://studiomoh.com/fun/tumblr_originals/?tumblr=' + name); } function tumblr(){ let name = window.location.host.split('.')[0]; window.location.href = 'http://studiomoh.com/fun/tumblr_originals/?tumblr=' + name; } GM_registerMenuCommand( 'Show Original Posts', tumblr ); GM_registerMenuCommand( 'Show Original Posts in new Tab', tumblrNewTab );