tampermonkey-vscode-helper-cli发布啦!
前提:需要有node环境1.输入npm init 初始化项目
2.输入`npm i tampermonkey-vscode-helper tampermonkey-vscode-helper-cli -s`
3.新建一个脚本代码,暂且起名叫test.js
```js
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 2024-04-21
// @descriptiontry to take over the world!
// @author You
// @match https://www.baidu.com
// @icon https://www.google.com/s2/favicons?sz=64&domain=juejin.cn
// @grant none
// ==/UserScript==
alert('hello workd')
```
4.在当前目录新建`tampermonkey.config.js`文件,输入配置项
```js
const path = require("path");
module.exports = {
watch: path.join(__dirname, "./test.js"),//监听文件
autoRefresh: "all", //自动刷新
};
```
5 .输入`npx tampermonkey_vscode_helper_cli `唤起浏览器
6.正常更改test.js就行啦!
页:
[1]