()
| 824 | ` |
| 825 | // 开发用 |
| 826 | static devCss() { |
| 827 | GM_xmlhttpRequest({ |
| 828 | method: 'get', |
| 829 | url: 'http://127.0.0.1:1145', |
| 830 | responseType: 'blob', |
| 831 | onload: (res) => { |
| 832 | // console.log(res.responseText); |
| 833 | GM_addStyle(res.responseText) |
| 834 | }, |
| 835 | onerror: (error => { |
| 836 | console.log('该页无法链接') |
| 837 | }) |
| 838 | }) |
| 839 | } |
| 840 | |
| 841 | static create() { |
| 842 | // 获取根节点 |
nothing calls this directly
no outgoing calls
no test coverage detected