()
| 248 | } |
| 249 | |
| 250 | function del() { |
| 251 | if (!check()) return |
| 252 | let websiteList = menu_value('menu_forcedToEnable'), // 读取网站列表 |
| 253 | index = websiteList.indexOf(location.host); |
| 254 | websiteList.splice(index, 1); // 删除网站域名 |
| 255 | GM_setValue('menu_forcedToEnable', websiteList); // 写入配置 |
| 256 | location.reload(); // 刷新网页 |
| 257 | } |
| 258 | } |
| 259 | |
| 260 |
no test coverage detected