summaryrefslogtreecommitdiff
path: root/ext/bg/js/backend.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-12-09 21:56:47 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-12-13 23:11:56 -0500
commitf78671346696ddac23e9f858f567e5db065effec (patch)
tree0aa45d7de633bacb58041f5e03da43f96456c683 /ext/bg/js/backend.js
parent01a343262702d2c8641c7a4f990d439f38b90cb0 (diff)
Move apiInjectStylesheet implementation into Backend
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r--ext/bg/js/backend.js27
1 files changed, 26 insertions, 1 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js
index 4b94d073..df021ea2 100644
--- a/ext/bg/js/backend.js
+++ b/ext/bg/js/backend.js
@@ -436,7 +436,32 @@ class Backend {
}
_onApiInjectStylesheet({css}, sender) {
- return apiInjectStylesheet(css, 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
+ };
+ if (typeof frameId === 'number') {
+ details.frameId = frameId;
+ }
+
+ return new Promise((resolve, reject) => {
+ chrome.tabs.insertCSS(tabId, details, () => {
+ const e = chrome.runtime.lastError;
+ if (e) {
+ reject(new Error(e.message));
+ } else {
+ resolve();
+ }
+ });
+ });
}
_onApiGetEnvironmentInfo() {