()
| 63 | } |
| 64 | |
| 65 | function check() { // 存在返回真,不存在返回假 |
| 66 | let websiteList = GM_getValue('menu_forcedToEnable',[]); // 读取网站列表 |
| 67 | if (websiteList.indexOf(location.host) === -1) return false // 不存在返回假 |
| 68 | return true |
| 69 | } |
| 70 | |
| 71 | function add() { |
| 72 | if (check()) return |
no outgoing calls
no test coverage detected