2017-03-26 02:30:59 +00:00
|
|
|
/* global getDatabase, getStyles, reportError */
|
|
|
|
'use strict';
|
2017-03-15 12:41:39 +00:00
|
|
|
|
2017-03-27 09:11:29 +00:00
|
|
|
chrome.webNavigation.onBeforeNavigate.addListener(data => {
|
|
|
|
webNavigationListener(null, data);
|
|
|
|
});
|
|
|
|
|
2017-03-26 02:30:59 +00:00
|
|
|
chrome.webNavigation.onCommitted.addListener(data => {
|
|
|
|
webNavigationListener('styleApply', data);
|
|
|
|
});
|
2017-03-27 09:11:29 +00:00
|
|
|
|
2017-03-26 02:30:59 +00:00
|
|
|
chrome.webNavigation.onHistoryStateUpdated.addListener(data => {
|
|
|
|
webNavigationListener('styleReplaceAll', data);
|
|
|
|
});
|
2017-03-27 09:11:29 +00:00
|
|
|
|
|
|
|
chrome.webNavigation.onReferenceFragmentUpdated.addListener(data => {
|
|
|
|
webNavigationListener('styleReplaceAll', data);
|
2017-03-26 02:30:59 +00:00
|
|
|
});
|
|
|
|
|
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
|
|
|
|
2015-02-23 22:48:27 +00:00
|
|
|
function webNavigationListener(method, data) {
|
2017-03-26 02:30:59 +00:00
|
|
|
getStyles({matchUrl: data.url, enabled: true, asHash: true}, styles => {
|
2017-03-27 09:11:29 +00:00
|
|
|
// we can't inject chrome:// and chrome-extension:// pages
|
|
|
|
// so we'll only inform our page of the change
|
|
|
|
// and it'll retrieve the styles directly
|
|
|
|
if (method && !data.url.startsWith('chrome:')) {
|
|
|
|
const isOwnPage = data.url.startsWith(OWN_ORIGIN);
|
2017-03-26 02:30:59 +00:00
|
|
|
chrome.tabs.sendMessage(
|
|
|
|
data.tabId,
|
2017-03-27 09:11:29 +00:00
|
|
|
{method, styles: isOwnPage ? 'DIY' : styles},
|
2017-03-26 02:30:59 +00:00
|
|
|
{frameId: data.frameId});
|
|
|
|
}
|
|
|
|
// main page frame id is 0
|
|
|
|
if (data.frameId == 0) {
|
|
|
|
updateIcon({id: data.tabId, url: data.url}, styles);
|
|
|
|
}
|
|
|
|
});
|
2015-02-23 22:48:27 +00:00
|
|
|
}
|
2015-01-30 16:36:46 +00:00
|
|
|
|
2017-03-18 22:35:27 +00:00
|
|
|
// messaging
|
|
|
|
|
|
|
|
chrome.runtime.onMessage.addListener(onBackgroundMessage);
|
|
|
|
|
|
|
|
function onBackgroundMessage(request, sender, sendResponse) {
|
2017-03-26 02:30:59 +00:00
|
|
|
switch (request.method) {
|
|
|
|
|
|
|
|
case 'getStyles':
|
2017-03-27 19:45:23 +00:00
|
|
|
getStyles(request, styles => {
|
|
|
|
sendResponse(styles);
|
|
|
|
// check if this is a main content frame style enumeration
|
|
|
|
if (request.matchUrl && !request.id
|
|
|
|
&& sender && sender.tab && sender.frameId == 0
|
|
|
|
&& sender.tab.url == request.matchUrl) {
|
|
|
|
updateIcon(sender.tab, styles);
|
|
|
|
}
|
|
|
|
});
|
2017-03-26 02:30:59 +00:00
|
|
|
return KEEP_CHANNEL_OPEN;
|
|
|
|
|
|
|
|
case 'saveStyle':
|
|
|
|
saveStyle(request).then(sendResponse);
|
|
|
|
return KEEP_CHANNEL_OPEN;
|
|
|
|
|
|
|
|
case 'invalidateCache':
|
|
|
|
if (typeof invalidateCache != 'undefined') {
|
|
|
|
invalidateCache(false, request);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'healthCheck':
|
|
|
|
getDatabase(
|
|
|
|
() => sendResponse(true),
|
|
|
|
() => sendResponse(false));
|
|
|
|
return KEEP_CHANNEL_OPEN;
|
|
|
|
|
|
|
|
case 'styleDisableAll':
|
|
|
|
request = {prefName: 'disableAll', value: request.disableAll};
|
|
|
|
// fallthrough to prefChanged
|
|
|
|
|
|
|
|
case 'prefChanged':
|
|
|
|
// eslint-disable-next-line no-use-before-define
|
|
|
|
if (typeof request.value == 'boolean' && contextMenus[request.prefName]) {
|
2017-03-29 00:57:21 +00:00
|
|
|
chrome.contextMenus.update(request.prefName, {checked: request.value}, ignoreChromeError);
|
2017-03-26 02:30:59 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2017-03-18 22:35:27 +00:00
|
|
|
}
|
2015-01-29 18:41:45 +00:00
|
|
|
|
2017-03-18 22:35:27 +00:00
|
|
|
// commands (global hotkeys)
|
2016-03-08 05:22:28 +00:00
|
|
|
|
2017-03-18 22:35:27 +00:00
|
|
|
const browserCommands = {
|
2017-03-26 02:30:59 +00:00
|
|
|
openManage() {
|
|
|
|
openURL({url: '/manage.html'});
|
|
|
|
},
|
|
|
|
styleDisableAll(state) {
|
|
|
|
prefs.set('disableAll',
|
|
|
|
typeof state == 'boolean' ? state : !prefs.get('disableAll'));
|
|
|
|
},
|
2017-03-18 22:35:27 +00:00
|
|
|
};
|
2016-03-08 05:22:28 +00:00
|
|
|
// Not available in Firefox - https://bugzilla.mozilla.org/show_bug.cgi?id=1240350
|
2017-03-18 22:35:27 +00:00
|
|
|
if ('commands' in chrome) {
|
2017-03-26 02:30:59 +00:00
|
|
|
chrome.commands.onCommand.addListener(command => browserCommands[command]());
|
2016-03-08 05:22:28 +00:00
|
|
|
}
|
2015-03-24 14:07:59 +00:00
|
|
|
|
2017-03-18 22:35:27 +00:00
|
|
|
// context menus
|
2015-08-01 12:06:47 +00:00
|
|
|
|
2017-03-18 22:35:27 +00:00
|
|
|
const contextMenus = {
|
2017-03-26 02:30:59 +00:00
|
|
|
'show-badge': {
|
|
|
|
title: 'menuShowBadge',
|
|
|
|
click: info => prefs.set(info.menuItemId, info.checked),
|
|
|
|
},
|
|
|
|
'disableAll': {
|
|
|
|
title: 'disableAllStyles',
|
|
|
|
click: browserCommands.styleDisableAll,
|
|
|
|
},
|
|
|
|
'open-manager': {
|
|
|
|
title: 'openStylesManager',
|
|
|
|
click: browserCommands.openManage,
|
|
|
|
},
|
2017-03-18 22:35:27 +00:00
|
|
|
};
|
|
|
|
|
2017-03-21 22:29:07 +00:00
|
|
|
// detect browsers without Delete by looking at the end of UA string
|
|
|
|
// Google Chrome: Safari/#
|
|
|
|
// but skip CentBrowser: Safari/# plus Shockwave Flash in plugins
|
|
|
|
// Vivaldi: Vivaldi/#
|
|
|
|
if (/Vivaldi\/[\d.]+$/.test(navigator.userAgent)
|
2017-03-26 02:30:59 +00:00
|
|
|
|| /Safari\/[\d.]+$/.test(navigator.userAgent)
|
|
|
|
&& ![...navigator.plugins].some(p => p.name == 'Shockwave Flash')) {
|
|
|
|
contextMenus.editDeleteText = {
|
|
|
|
title: 'editDeleteText',
|
|
|
|
contexts: ['editable'],
|
|
|
|
documentUrlPatterns: [OWN_ORIGIN + 'edit*'],
|
|
|
|
click: (info, tab) => {
|
|
|
|
chrome.tabs.sendMessage(tab.id, {method: 'editDeleteText'});
|
|
|
|
},
|
|
|
|
};
|
2017-03-21 22:29:07 +00:00
|
|
|
}
|
|
|
|
|
2017-03-18 22:35:27 +00:00
|
|
|
chrome.contextMenus.onClicked.addListener((info, tab) =>
|
2017-03-26 02:30:59 +00:00
|
|
|
contextMenus[info.menuItemId].click(info, tab));
|
2017-03-18 22:35:27 +00:00
|
|
|
|
|
|
|
Object.keys(contextMenus).forEach(id => {
|
2017-03-26 02:30:59 +00:00
|
|
|
const item = Object.assign({id}, contextMenus[id]);
|
|
|
|
const prefValue = prefs.readOnlyValues[id];
|
|
|
|
const isBoolean = typeof prefValue == 'boolean';
|
|
|
|
item.title = chrome.i18n.getMessage(item.title);
|
|
|
|
if (isBoolean) {
|
|
|
|
item.type = 'checkbox';
|
|
|
|
item.checked = prefValue;
|
|
|
|
}
|
|
|
|
if (!item.contexts) {
|
|
|
|
item.contexts = ['browser_action'];
|
|
|
|
}
|
|
|
|
delete item.click;
|
|
|
|
chrome.contextMenus.create(item, ignoreChromeError);
|
2015-03-25 17:59:10 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
2017-03-18 22:35:27 +00:00
|
|
|
// Get the DB so that any first run actions will be performed immediately
|
|
|
|
// when the background page loads.
|
2015-01-29 18:41:45 +00:00
|
|
|
getDatabase(function() {}, reportError);
|
2015-01-30 18:35:37 +00:00
|
|
|
|
2017-03-18 22:35:27 +00:00
|
|
|
// When an edit page gets attached or detached, remember its state
|
|
|
|
// so we can do the same to the next one to open.
|
2017-03-26 02:30:59 +00:00
|
|
|
const editFullUrl = OWN_ORIGIN + 'edit.html';
|
|
|
|
chrome.tabs.onAttached.addListener((tabId, data) => {
|
|
|
|
chrome.tabs.get(tabId, tabData => {
|
|
|
|
if (tabData.url.startsWith(editFullUrl)) {
|
|
|
|
chrome.windows.get(tabData.windowId, {populate: true}, win => {
|
|
|
|
// If there's only one tab in this window, it's been dragged to new window
|
|
|
|
prefs.set('openEditInWindow', win.tabs.length == 1);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2015-01-30 18:35:37 +00:00
|
|
|
});
|
2015-03-13 22:45:38 +00:00
|
|
|
|
2017-03-26 02:30:59 +00:00
|
|
|
var codeMirrorThemes; // eslint-disable-line no-var
|
|
|
|
getCodeMirrorThemes(themes => (codeMirrorThemes = themes));
|
2017-02-23 07:37:25 +00:00
|
|
|
|
2017-03-11 09:26:24 +00:00
|
|
|
// do not use prefs.get('version', null) as it might not yet be available
|
|
|
|
chrome.storage.local.get('version', prefs => {
|
2017-03-26 02:30:59 +00:00
|
|
|
// Open FAQs page once after installation to guide new users,
|
|
|
|
// https://github.com/schomery/stylish-chrome/issues/22#issuecomment-279936160
|
|
|
|
if (!prefs.version) {
|
|
|
|
// do not display the FAQs page in development mode
|
|
|
|
if ('update_url' in chrome.runtime.getManifest()) {
|
|
|
|
const version = chrome.runtime.getManifest().version;
|
|
|
|
chrome.storage.local.set({version}, () => {
|
|
|
|
window.setTimeout(() => {
|
|
|
|
chrome.tabs.create({
|
|
|
|
url: `http://add0n.com/stylus.html?version=${version}&type=install`
|
|
|
|
});
|
|
|
|
}, 3000);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2017-03-11 09:26:24 +00:00
|
|
|
});
|
2017-03-15 12:41:39 +00:00
|
|
|
|
2017-03-26 02:30:59 +00:00
|
|
|
|
2017-03-16 10:17:42 +00:00
|
|
|
injectContentScripts();
|
2017-03-15 18:18:17 +00:00
|
|
|
|
2017-03-16 10:17:42 +00:00
|
|
|
function injectContentScripts() {
|
2017-03-26 02:30:59 +00:00
|
|
|
const contentScripts = chrome.app.getDetails().content_scripts;
|
|
|
|
for (const cs of contentScripts) {
|
|
|
|
cs.matches = cs.matches.map(m => (
|
|
|
|
m == '<all_urls>' ? m : wildcardAsRegExp(m)
|
|
|
|
));
|
|
|
|
}
|
|
|
|
// also inject in chrome://newtab/ page
|
|
|
|
chrome.tabs.query({url: '*://*/*'}, tabs => {
|
|
|
|
for (const tab of tabs) {
|
|
|
|
for (const cs of contentScripts) {
|
|
|
|
for (const m of cs.matches) {
|
|
|
|
if (m == '<all_urls>' || tab.url.match(m)) {
|
|
|
|
chrome.tabs.sendMessage(tab.id, {method: 'ping'}, pong => {
|
|
|
|
if (!pong) {
|
|
|
|
chrome.tabs.executeScript(tab.id, {
|
|
|
|
file: cs.js[0],
|
|
|
|
runAt: cs.run_at,
|
|
|
|
allFrames: cs.all_frames,
|
|
|
|
}, ignoreChromeError);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
// inject the content script just once
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2017-03-15 12:41:39 +00:00
|
|
|
}
|