How to include Local htm pages in a Tampermonkey script?

雨燕双飞 提交于 2019-12-20 03:21:48

问题


The script below works on a normal webpage, but how I can make it work on local .htm files too? (When opened in the Chrome browser)

// ==UserScript==
// @name            betterTwitter
// @version         0.5
// @namespace       http://www.h4xful.net/
// @description     Gets rid of the garbage on Twitter's side-panel.
// @include         http://twitter.com/*
// @include         https://twitter.com/*
// @include         file://C:/Users/*.htm
... ... 

The last line (@include file:...) doesn't work at all. The script doesn't fire for a sample page.


回答1:


First, on Chrome's extensions setting page (chrome://extensions/), make sure Tampermonkey has access to file URLs:

Second, format the @include (or @match) with the correct number of slashes. It should almost always start with file:///.
For example:

// @include    file:///C:/Users/*.htm


来源:https://stackoverflow.com/questions/34437050/how-to-include-local-htm-pages-in-a-tampermonkey-script

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!