-
-
Notifications
You must be signed in to change notification settings - Fork 41
如何进行本地开发调试
Rick Lee edited this page Mar 17, 2021
·
12 revisions
- 首先要修改Tampermonkey扩展,允许访问文件网址。
- 在浏览器的Tampermonkey扩展中新建一个空白的用户脚本,将以下内容复制进去。然后将
@require
下的文件路径改为自己本地工程中.cache/easy-seed.user.js
所在的绝对路径。
// ==UserScript==
// @name Debug
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @require https://cdn.bootcss.com/jquery/1.7.1/jquery.min.js
// @match https://passthepopcorn.me/torrents.php?id=*
// @match http://*/details.php?id=*
// @match https://*/details.php?id=*
// @match https://totheglory.im/t/*
// @match https://beyond-hd.me/torrents/*
// @match https://lemonhd.org/upload_*
// @match https://lemonhd.org/details*
// @match https://blutopia.xyz/torrents/*
// @match https://blutopia.xyz/torrents?imdb=*
// @match https://blutopia.xyz/upload/*
// @match https://*/upload*
// @match http://*/upload*
// @grant GM_addStyle
// @grant GM_xmlhttpRequest
// @require file:///Users/USER_NAME/../easy-seed/.cache/easy-seed.user.js
// ==/UserScript==
(function() {
'use strict';
// Your code here...
})();
-
npm run dev
启动工程,有文件改动,.cache
目录下的脚本会自动更新,刷新浏览器即可。
npm run build
在dist
目录生成新脚本。