您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Auto thanks in TTG and NexusPHP.
- // ==UserScript==
- // @id PT_Auto_Thanks@jiayiming
- // @name PT Auto Thanks
- // @version 1.2
- // @namespace jiayiming
- // @author jiayiming
- // @description Auto thanks in TTG and NexusPHP.
- // @include http://ttg.im/t/*/
- // @include http://*details.php*
- // @run-at document-end
- // ==/UserScript==
- (function() {
- function $(css, contextNode) {
- return (contextNode || document).querySelector(css);
- }
- function Thanks() {
- var url = location.href;
- var btn = '';
- if (url.indexOf('ttg') > 0) {
- btn = $('#ajaxthanks');
- } else if (url.indexOf('details') > 0) {
- btn = $('#saythanks');
- }
- if (btn != undefined && btn.disabled != true) {
- //alert(url);
- //btn.onclick = undefined;
- btn.click();
- }
- }
- window.addEventListener('load', Thanks(), false);
- })();