每当加载特定页面时运行 JS
我目前有一个小书签,我希望在加载特定页面时执行该小书签。
有 Chrome 扩展程序或类似扩展程序可以让我执行此操作吗?
I currently have a bookmarklet that I want to be executed whenever a specific page is loaded.
Is there a Chrome extension or similar that will let me do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Chrome 用户脚本来执行此操作。在 Chrome 中,您可以使用
@match
行(例如:)来指定页面。
这些与 Greasemonkey 脚本类似,但存在一些特定于浏览器的差异。请参阅此列表可在 Chrome 中运行的脚本。
You can do this with Chrome user scripts. In Chrome, you use a
@match
line like:to specify the page.
These are similar to Greasemonkey scripts, with some browser-specific differences. See this list of scripts that work in Chrome.