您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
It will mark a episode as watched after clicking the advertising close button
// ==UserScript== // @name Automatically mark episode as watched at Najserialy.com // @namespace http://tampermonkey.net/ // @version 0.1 // @description It will mark a episode as watched after clicking the advertising close button // @author You // @match https://najserialy.com/serial/* // @grant none // @require http://code.jquery.com/jquery-1.12.4.min.js // ==/UserScript== (function() { 'use strict'; $('.rekRPlama .close').click(function() { // already marked as watched if ($('.actions .viewed.active').length > 0) return; $('.actions .viewed').click(); }); })();