油猴脚本怎么引用本地js文件
时间: 2023-10-22 07:42:54 浏览: 116
要在油猴脚本中引用本地的 js 文件,可以使用以下代码:
```javascript
// ==UserScript==
// @name My UserScript
// @version 1.0
// @description Example script to load a local file
// @match http://example.com/*
// @grant none
// ==/UserScript==
// Load the local file
var script = document.createElement('script');
script.src = 'file:///path/to/myfile.js';
document.head.appendChild(script);
```
在这个示例脚本中,我们使用 `document.createElement` 函数创建了一个 `script` 标签,然后将 `src` 属性设置为本地文件的路径。最后,将 `script` 标签添加到页面的 `head` 元素中。
请注意,这种方法只适用于本地文件。如果你想引用远程文件,请使用前面提到的 `GM_xmlhttpRequest` 函数来加载远程文件。
阅读全文