您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
公共函数库
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.cn-greasyfork.org/scripts/438730/1009750/%E5%87%BD%E6%95%B0%E5%BA%93.js
- // ==UserScript==
- // @name 函数库
- // @namespace https://hz.cn2down.com
- // @version 0.1
- // @description 公共函数库
- // @author zenghp2015
- // @license MIT
- // ==/UserScript==
- (function() {
- 'use strict';
- const libs = {
- getQuery: function () {
- const url = decodeURI(location.search); // 获取url中"?"符后的字串(包括问号)
- let query = {};
- if (url.indexOf("?") != -1) {
- const str = url.substr(1);
- const pairs = str.split("&");
- for(let i = 0; i < pairs.length; i ++) {
- const pair = pairs[i].split("=");
- query[pair[0]] = pair[1];
- }
- }
- return query ; // 返回对象
- },
- getQueryValue: function (name) {
- const url = decodeURI(location.search); // 获取url中"?"符后的字串(包括问号)
- let query = {};
- if (url.indexOf("?") != -1) {
- const str = url.substr(1);
- const pairs = str.split("&");
- for(let i = 0; i < pairs.length; i ++) {
- const pair = pairs[i].split("=");
- if(pair[0] === name) return pair[1]; // 返回 参数值
- }
- }
- return(false);
- }
- }
- window.cn2Libs = libs
- })();