keep valid url path chars intact
This commit is contained in:
parent
079e7e50f1
commit
7a1045b45a
|
@ -158,7 +158,7 @@ window.StyleInjector = window.INJECTED === 1 ? window.StyleInjector : ({
|
||||||
function setTextAndName(el, {id, code = '', name}) {
|
function setTextAndName(el, {id, code = '', name}) {
|
||||||
if (exposeStyleName && name) {
|
if (exposeStyleName && name) {
|
||||||
el.dataset.name = name;
|
el.dataset.name = name;
|
||||||
name = encodeURIComponent(name.replace(/[?#%/@:']/g, toSafeChar));
|
name = encodeURIComponent(name.replace(/[?#/']/g, toSafeChar));
|
||||||
code += `\n/*# sourceURL=${chrome.runtime.getURL(name)}.user.css#${id} */`;
|
code += `\n/*# sourceURL=${chrome.runtime.getURL(name)}.user.css#${id} */`;
|
||||||
}
|
}
|
||||||
el.textContent = code;
|
el.textContent = code;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user