Greasy Fork

Greasy Fork is available in English.

TitleList

Common functions for working on lists of titles

当前为 2019-09-18 提交的版本,查看 最新版本

此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/scripts/390248/734189/TitleList.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          TitleList
// @description   Common functions for working on lists 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);}