您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Common functions for working on list of titles
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/scripts/390248/734028/Common%20functions%20for%20list%20of%20title%20management.js
//{ // Common functions for working on lists of titles, loading them, highlighting // titles based on these lists. // // Copyright (c) 2019, Guido Villa // Most of the code is taken from IMDb 'My Movies' enhancer: // Copyright (c) 2008-2018, Ricardo Mendonça Ferreira ([email protected]) // Released under the GPL license - http://www.gnu.org/copyleft/gpl.html // // -------------------------------------------------------------------- // // ==UserScript== // @name Common functions for list of title management // @description Common functions for working on list of titles // @namespace http://greasyfork.icu/en/scripts/390248-common-functions-for-list-of-title-management // @updateURL about:blank // @homepageURL http://greasyfork.icu/en/scripts/390248-common-functions-for-list-of-title-management // @copyright 2019, Guido Villa // @license GPL-3.0-or-later // @oujs:author Guido // @date 18.09.2019 // @version 0.1 // ==/UserScript== // // To-do (priority: [H]igh, [M]edium, [L]ow): // - [H] Everything: extract functions from Netflix Hide Titles script and insert them below // // History: // -------- // 2019.09.18 [0.1] First test version, private use only // //} const VERSIONfunctionFile = "0.1"; // FUNCTIONS ************************************************************************************************************* function $(ID){return document.getElementById(ID);}