MCPcopy Create free account
hub / github.com/ChinaGodMan/UserScripts / devCss

Method devCss

highlight-keywords/highlight-keywords.user.js:826–839  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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 // 获取根节点

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected