.user.css in virtual style urls

benefits:
* styles are listed directly under `Stylus` in devtools source file tree
* easy to differentiate from site's css
This commit is contained in:
tophf 2022-02-11 00:08:20 +03:00
parent 10de02f04d
commit 81a5acfda3
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@
}
if (CHROME) {
chrome.webRequest.onBeforeRequest.addListener(openNamedStyle, {
urls: [URLS.ownOrigin + 'virtual/*.css'],
urls: [URLS.ownOrigin + '*.user.css'],
types: ['main_frame'],
}, ['blocking']);
}

View File

@ -150,7 +150,7 @@ window.StyleInjector = window.INJECTED === 1 ? window.StyleInjector : ({
if (exposeStyleName && name) {
el.dataset.name = name;
name = encodeURIComponent(name.replace(/[#%/@:']/g, toSafeChar));
code += `\n/*# sourceURL=${chrome.runtime.getURL('')}virtual/${name}.css#${id} */`;
code += `\n/*# sourceURL=${chrome.runtime.getURL(name)}.user.css#${id} */`;
}
el.type = 'text/css';
// SVG className is not a string, but an instance of SVGAnimatedString