Allow apiInjectStylesheet to inject a URL
This commit is contained in:
parent
1c6ed1d286
commit
2c3f510010
@ -499,19 +499,28 @@ class Backend {
|
||||
return Promise.resolve({frameId});
|
||||
}
|
||||
|
||||
_onApiInjectStylesheet({css}, sender) {
|
||||
_onApiInjectStylesheet({type, value}, sender) {
|
||||
if (!sender.tab) {
|
||||
return Promise.reject(new Error('Invalid tab'));
|
||||
}
|
||||
|
||||
const tabId = sender.tab.id;
|
||||
const frameId = sender.frameId;
|
||||
const details = {
|
||||
code: css,
|
||||
runAt: 'document_start',
|
||||
cssOrigin: 'user',
|
||||
allFrames: false
|
||||
};
|
||||
const details = (
|
||||
type === 'file' ?
|
||||
{
|
||||
file: value,
|
||||
runAt: 'document_start',
|
||||
cssOrigin: 'author',
|
||||
allFrames: false
|
||||
} :
|
||||
{
|
||||
code: value,
|
||||
runAt: 'document_start',
|
||||
cssOrigin: 'user',
|
||||
allFrames: false
|
||||
}
|
||||
);
|
||||
if (typeof frameId === 'number') {
|
||||
details.frameId = frameId;
|
||||
}
|
||||
|
@ -167,7 +167,7 @@ class Popup {
|
||||
} else {
|
||||
if (!css) { return; }
|
||||
try {
|
||||
await apiInjectStylesheet(css);
|
||||
await apiInjectStylesheet('code', css);
|
||||
this._stylesheetInjectedViaApi = true;
|
||||
} catch (e) {
|
||||
// NOP
|
||||
|
@ -89,8 +89,8 @@ function apiFrameInformationGet() {
|
||||
return _apiInvoke('frameInformationGet');
|
||||
}
|
||||
|
||||
function apiInjectStylesheet(css) {
|
||||
return _apiInvoke('injectStylesheet', {css});
|
||||
function apiInjectStylesheet(type, value) {
|
||||
return _apiInvoke('injectStylesheet', {type, value});
|
||||
}
|
||||
|
||||
function apiGetEnvironmentInfo() {
|
||||
|
Loading…
Reference in New Issue
Block a user