TA的每日心情 | 开心 2023-2-25 19:29 |
---|
签到天数: 1 天 [LV.1]初来乍到
助理工程师
- 积分
- 5
|
安装此脚本
如何安装?
脚本问题反馈
给脚本评分
查看代码 本帖最后由 xiaolj 于 2021-12-3 08:13 编辑
按照官方及网友步骤是这样的:
1、设置油猴允许访问本地资源文件(重启浏览器)
2、新建油猴脚本,在声明中引入// @require file://D:\hdsbot.js(完整引用见示例代码)
保存之后刷新页面后[hdsbot.js]本地脚本没有生效(未加载?),请教各路大哥帮忙指点迷津,感激不尽!
提示:hdsbot.js这个本地磁盘文件中引用了外部jquery.js,我在油猴编辑也已声明@require xxx.js
- // ==UserScript==
- // @name 隐藏广告测试(本地)
- // @namespace https://bbs.tampermonkey.net.cn/?29021
- // @version 1.0.0
- // @author xiaolj
- // @description Init
- // @icon https://s1.hdslb.com/bfs/static/jinkela/international-home/assets/icon_slide_selected.png
- // @include https://www.iconfont.cn/manage/index*
- // @require https://static.hdslb.com/js/jquery.min.js
- // @require file://D:\hdsbot.js
- // @compatible chrome
- // @compatible firefox
- // @license MIT
- //@run-at document-start
- // @grant GM_xmlhttpRequest
- // @grant GM_registerMenuCommand
- // @grant GM_unregisterMenuCommand
- // @grant GM_notification
- // @grant GM_setClipboard
- // @grant GM_setValue
- // @grant GM_getValue
- // @grant GM_addElement
- // @grant GM_deleteValue
- // @grant GM_openInTab
- // @grant GM_download
- // @grant window.onurlchange
- // @grant unsafeWindow
- // ==/UserScript==
- /* globals jQuery, $, waitForKeyElements */
复制代码
|
|