2017-03-26 02:30:59 +00:00
|
|
|
/* global getStyleWithNoCode, applyOnMessage, onBackgroundMessage, getStyles */
|
|
|
|
'use strict';
|
|
|
|
|
2017-03-14 23:27:52 +00:00
|
|
|
// keep message channel open for sendResponse in chrome.runtime.onMessage listener
|
|
|
|
const KEEP_CHANNEL_OPEN = true;
|
2017-03-15 11:55:20 +00:00
|
|
|
const OWN_ORIGIN = chrome.runtime.getURL('');
|
2017-03-14 23:27:52 +00:00
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2012-04-16 01:56:12 +00:00
|
|
|
function notifyAllTabs(request) {
|
2017-03-26 02:30:59 +00:00
|
|
|
// list all tabs including chrome-extension:// which can be ours
|
|
|
|
if (request.codeIsUpdated === false && request.style) {
|
|
|
|
request = Object.assign({}, request, {
|
|
|
|
style: getStyleWithNoCode(request.style)
|
Improve style caching, cache requests too, add code:false mode
Previously, when a cache was invalidated and every tab/iframe issued a getStyles request, we previous needlessly accessed IndexedDB for each of these requests. It happened because 1) the global cachedStyles was created only at the end of the async DB-reading, 2) and each style record is retrieved asynchronously so the single threaded JS engine interleaved all these operations. It could easily span a few seconds when many tabs are open and you have like 100 styles.
Now, in getStyles: all requests issued while cachedStyles is being populated are queued and invoked at the end.
Now, in filterStyles: all requests are cached using the request's options combined in a string as a key. It also helps on each navigation because we monitor page loading process at different stages: before, when committed, history traversal, requesting applicable styles by a content script. Icon badge update also may issue a copy of the just issued request by one of the navigation listeners.
Now, the caches are invalidated smartly: style add/update/delete/toggle only purges filtering cache, and modifies style cache in-place without re-reading the entire IndexedDB.
Now, code:false mode for manage page that only needs style meta. It reduces the transferred message size 10-100 times thus reducing the overhead caused by to internal JSON-fication in the extensions API.
Also fast&direct getStylesSafe for own pages; code cosmetics
2017-03-17 22:50:35 +00:00
|
|
|
});
|
2017-03-26 02:30:59 +00:00
|
|
|
}
|
|
|
|
chrome.tabs.query({}, tabs => {
|
|
|
|
for (const tab of tabs) {
|
|
|
|
chrome.tabs.sendMessage(tab.id, request);
|
|
|
|
updateIcon(tab);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
// notify all open popups
|
|
|
|
const reqPopup = Object.assign({}, request, {method: 'updatePopup', reason: request.method});
|
|
|
|
chrome.runtime.sendMessage(reqPopup);
|
|
|
|
// notify self: the message no longer is sent to the origin in new Chrome
|
|
|
|
if (typeof applyOnMessage !== 'undefined') {
|
|
|
|
applyOnMessage(reqPopup);
|
|
|
|
}
|
|
|
|
// notify self: pref changed by background page
|
|
|
|
if (request.method == 'prefChanged' && typeof onBackgroundMessage !== 'undefined') {
|
|
|
|
onBackgroundMessage(request);
|
|
|
|
}
|
2012-04-16 01:56:12 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-03-14 23:27:52 +00:00
|
|
|
function refreshAllTabs() {
|
2017-03-26 02:30:59 +00:00
|
|
|
return new Promise(resolve => {
|
|
|
|
// list all tabs including chrome-extension:// which can be ours
|
|
|
|
chrome.tabs.query({}, tabs => {
|
|
|
|
const lastTab = tabs[tabs.length - 1];
|
|
|
|
for (const tab of tabs) {
|
|
|
|
getStyles({matchUrl: tab.url, enabled: true, asHash: true}, styles => {
|
|
|
|
const message = {method: 'styleReplaceAll', styles};
|
|
|
|
if (tab.url == location.href && typeof applyOnMessage !== 'undefined') {
|
|
|
|
applyOnMessage(message);
|
|
|
|
} else {
|
|
|
|
chrome.tabs.sendMessage(tab.id, message);
|
|
|
|
}
|
|
|
|
updateIcon(tab, styles);
|
|
|
|
if (tab == lastTab) {
|
|
|
|
resolve();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2017-03-14 23:27:52 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2015-05-14 21:24:10 +00:00
|
|
|
function updateIcon(tab, styles) {
|
2017-03-26 02:30:59 +00:00
|
|
|
// while NTP is still loading only process the request for its main frame with a real url
|
|
|
|
// (but when it's loaded we should process style toggle requests from popups, for example)
|
2017-03-27 09:11:29 +00:00
|
|
|
const isNTP = tab.url == 'chrome://newtab/';
|
|
|
|
if (isNTP && tab.status != 'complete') {
|
2017-03-26 02:30:59 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (styles) {
|
|
|
|
// check for not-yet-existing tabs e.g. omnibox instant search
|
|
|
|
chrome.tabs.get(tab.id, () => {
|
|
|
|
if (!chrome.runtime.lastError) {
|
|
|
|
stylesReceived(styles);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
2017-03-27 09:11:29 +00:00
|
|
|
(isNTP ? getTabRealURL(tab) : Promise.resolve(tab.url))
|
|
|
|
.then(url => getStylesSafe({
|
|
|
|
matchUrl: url,
|
|
|
|
enabled: true,
|
|
|
|
asHash: true,
|
|
|
|
}))
|
|
|
|
.then(stylesReceived);
|
2017-03-26 02:30:59 +00:00
|
|
|
|
|
|
|
function stylesReceived(styles) {
|
|
|
|
let numStyles = styles.length;
|
|
|
|
if (numStyles === undefined) {
|
|
|
|
// for 'styles' asHash:true fake the length by counting numeric ids manually
|
|
|
|
numStyles = 0;
|
|
|
|
for (const id of Object.keys(styles)) {
|
|
|
|
numStyles += id.match(/^\d+$/) ? 1 : 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const disableAll = 'disableAll' in styles ? styles.disableAll : prefs.get('disableAll');
|
|
|
|
const postfix = disableAll ? 'x' : numStyles == 0 ? 'w' : '';
|
|
|
|
chrome.browserAction.setIcon({
|
|
|
|
path: {
|
|
|
|
// Material Design 2016 new size is 16px
|
|
|
|
16: `/images/icon/16${postfix}.png`, 32: `/images/icon/32${postfix}.png`,
|
|
|
|
// Chromium forks or non-chromium browsers may still use the traditional 19px
|
|
|
|
19: `/images/icon/19${postfix}.png`, 38: `/images/icon/38${postfix}.png`,
|
|
|
|
},
|
|
|
|
tabId: tab.id
|
|
|
|
}, () => {
|
|
|
|
// if the tab was just closed an error may occur,
|
|
|
|
// e.g. 'windowPosition' pref updated in edit.js::window.onbeforeunload
|
|
|
|
if (!chrome.runtime.lastError) {
|
|
|
|
const text = prefs.get('show-badge') && numStyles ? String(numStyles) : '';
|
|
|
|
chrome.browserAction.setBadgeText({text, tabId: tab.id});
|
|
|
|
chrome.browserAction.setBadgeBackgroundColor({
|
|
|
|
color: prefs.get(disableAll ? 'badgeDisabled' : 'badgeNormal')
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2012-04-16 01:56:12 +00:00
|
|
|
}
|
2015-05-21 09:34:44 +00:00
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
|
|
|
|
function getActiveTab() {
|
2017-03-26 02:30:59 +00:00
|
|
|
return new Promise(resolve =>
|
|
|
|
chrome.tabs.query({currentWindow: true, active: true}, tabs =>
|
|
|
|
resolve(tabs[0])));
|
2015-05-21 09:34:44 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
|
|
|
|
function getActiveTabRealURL() {
|
2017-03-26 02:30:59 +00:00
|
|
|
return getActiveTab()
|
|
|
|
.then(getTabRealURL);
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function getTabRealURL(tab) {
|
2017-03-26 02:30:59 +00:00
|
|
|
return new Promise(resolve => {
|
|
|
|
if (tab.url != 'chrome://newtab/') {
|
|
|
|
resolve(tab.url);
|
|
|
|
} else {
|
|
|
|
chrome.webNavigation.getFrame({tabId: tab.id, frameId: 0, processId: -1}, frame => {
|
2017-03-25 21:14:41 +00:00
|
|
|
resolve(frame && frame.url || '');
|
2017-03-26 02:30:59 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2015-05-21 09:34:44 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-03-25 06:17:14 +00:00
|
|
|
// opens a tab or activates the already opened one,
|
|
|
|
// reuses the New Tab page if it's focused now
|
|
|
|
function openURL({url, currentWindow = true}) {
|
2017-03-26 02:30:59 +00:00
|
|
|
if (!url.includes('://')) {
|
|
|
|
url = chrome.runtime.getURL(url);
|
|
|
|
}
|
|
|
|
return new Promise(resolve => {
|
2017-03-29 10:00:19 +00:00
|
|
|
// [some] chromium forks don't handle their fake branded protocols
|
|
|
|
url = url.replace(/^(opera|vivaldi)/, 'chrome');
|
2017-03-27 02:35:10 +00:00
|
|
|
// API doesn't handle the hash-fragment part
|
|
|
|
chrome.tabs.query({url: url.replace(/#.*/, ''), currentWindow}, tabs => {
|
|
|
|
for (const tab of tabs) {
|
|
|
|
if (tab.url == url) {
|
|
|
|
activateTab(tab).then(resolve);
|
|
|
|
return;
|
|
|
|
}
|
2017-03-26 02:30:59 +00:00
|
|
|
}
|
2017-03-27 02:35:10 +00:00
|
|
|
getActiveTab().then(tab => (
|
|
|
|
tab && tab.url == 'chrome://newtab/'
|
|
|
|
? chrome.tabs.update({url}, resolve)
|
|
|
|
: chrome.tabs.create({url}, resolve)
|
|
|
|
));
|
2017-03-26 02:30:59 +00:00
|
|
|
});
|
|
|
|
});
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-25 06:17:14 +00:00
|
|
|
function activateTab(tab) {
|
2017-03-26 02:30:59 +00:00
|
|
|
return Promise.all([
|
|
|
|
new Promise(resolve => {
|
|
|
|
chrome.tabs.update(tab.id, {active: true}, resolve);
|
|
|
|
}),
|
|
|
|
new Promise(resolve => {
|
|
|
|
chrome.windows.update(tab.windowId, {focused: true}, resolve);
|
|
|
|
}),
|
|
|
|
]);
|
2017-03-25 06:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-15 12:41:39 +00:00
|
|
|
function stringAsRegExp(s, flags) {
|
2017-03-26 02:30:59 +00:00
|
|
|
return new RegExp(s.replace(/[{}()[\]/\\.+?^$:=*!|]/g, '\\$&'), flags);
|
2017-03-15 12:41:39 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-03-15 12:41:39 +00:00
|
|
|
// expands * as .*?
|
|
|
|
function wildcardAsRegExp(s, flags) {
|
2017-03-26 02:30:59 +00:00
|
|
|
return new RegExp(s.replace(/[{}()[\]/\\.+?^$:=!|]/g, '\\$&').replace(/\*/g, '.*?'), flags);
|
2017-03-15 12:41:39 +00:00
|
|
|
}
|
2017-03-16 13:36:33 +00:00
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-03-26 09:02:06 +00:00
|
|
|
const configureCommands = {
|
|
|
|
url: navigator.userAgent.includes('OPR')
|
|
|
|
? 'opera://settings/configureCommands'
|
|
|
|
: 'chrome://extensions/configureCommands',
|
|
|
|
open: () => openURL({url: configureCommands.url}),
|
|
|
|
};
|