-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTampermonkeyDebugHelper.js
48 lines (46 loc) · 1.7 KB
/
TampermonkeyDebugHelper.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// ==UserScript==
// @name 油猴调试助手
// @namespace https://github.com/scutxd/TampermonkeyDebugHelper
// @version 0.0.1
// @description 用于油猴脚本的本地开发调试使用
// @author scutxd
// @match http://*/*
// @match https://*/*
// @run-at document-start
// @grant unsafeWindow
// @grant window.close
// @grant window.focus
// @grant GM_addStyle
// @grant GM_deleteValue
// @grant GM_listValues
// @grant GM_addValueChangeListener
// @grant GM_removeValueChangeListener
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_log
// @grant GM_getResourceText
// @grant GM_getResourceURL
// @grant GM_registerMenuCommand
// @grant GM_unregisterMenuCommand
// @grant GM_openInTab
// @grant GM_xmlhttpRequest
// @grant GM_webRequest
// @grant GM_download
// @grant GM_getTab
// @grant GM_saveTab
// @grant GM_getTabs
// @grant GM_notification
// @grant GM_setClipboard
// @grant GM_info
// @require file:///D:/Documents/github/h5player/dist/h5player.js
// ==/UserScript==
/**
* 使用说明:
* 开启 Tampermonkey 的 允许访问文件网址 权限
* 使用 @require 指向到你要调试的本地文件路径,例如:
* // @require file:///D:/Tampermonkey/myScript.js
* 设置-打开调试模式
*
* 注意,使用该调试助手的时候已经注入所有需要的特殊权限和功能,如果你使用了这些特殊的权限和功能必须在你的脚本里也注入一遍,否则会出现在调试模式下可以调用的功能,安装到油猴上却使用不了
*
*/