We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// ==UserScript== // @name Beautify Man Pages // @namespace https://bbs.tampermonkey.net.cn/ // @version 0.1.0 // @description 美化man.he.net 页面的内容 // @author Jikefan // @match http*://man.he.net/* // @run-at document-body // ==/UserScript== const myBodyStyle = () => { return 'font-size:12px'; } (function() { 'use strict'; let body = document.getElementsByTagName('body')[0]; body.style = myBodyStyle(); alert('识别出来了'); })();
不光是自己写的脚本没法检测出来,有时候下载的脚本虽然检测出来了,但是scriptcat就是不执行脚本,就是不工作。太烦了,于是只能用scriptcat来写代码,然后放油猴运行了。但是scriptcat的界面实在太友好了,所以希望尽快解决这个问题。
The text was updated successfully, but these errors were encountered:
// @match http*://man.he.net/* 这个http后面的*去掉就行了
// @match http*://man.he.net/*
Sorry, something went wrong.
match实现与其它管理器的可能有些不同,这种格式的不兼容 下个版本处理一下
你执行的网站是http://man.he.net/么?
http://man.he.net/
是的
🐛 修复http* match问题 #132
b17581b
No branches or pull requests
使用环境
问题
- 插件home目录能够识别
我的脚本代码如下
最后吐槽
不光是自己写的脚本没法检测出来,有时候下载的脚本虽然检测出来了,但是scriptcat就是不执行脚本,就是不工作。太烦了,于是只能用scriptcat来写代码,然后放油猴运行了。但是scriptcat的界面实在太友好了,所以希望尽快解决这个问题。
The text was updated successfully, but these errors were encountered: