2019-05-11 01:20:07 -07:00
|
|
|
/* globals UAParser */
|
2017-11-19 01:32:13 -08:00
|
|
|
|
2017-09-13 03:18:12 -07:00
|
|
|
'use strict';
|
|
|
|
|
2019-11-05 22:19:42 -08:00
|
|
|
|
2019-07-31 23:53:48 -07:00
|
|
|
const cache = {};
|
|
|
|
const tabs = {};
|
2018-08-16 03:14:11 -07:00
|
|
|
chrome.tabs.onRemoved.addListener(id => delete cache[id]);
|
|
|
|
chrome.tabs.onCreated.addListener(tab => tabs[tab.id] = tab.windowId);
|
2017-09-13 03:18:12 -07:00
|
|
|
|
2019-07-31 23:53:48 -07:00
|
|
|
const prefs = {
|
2017-11-22 04:35:22 -08:00
|
|
|
ua: '',
|
|
|
|
blacklist: [],
|
|
|
|
whitelist: [],
|
2017-12-13 04:45:54 -08:00
|
|
|
custom: {},
|
2018-08-16 03:14:11 -07:00
|
|
|
mode: 'blacklist',
|
2019-07-31 23:53:48 -07:00
|
|
|
color: '#777',
|
2018-11-04 01:37:09 -08:00
|
|
|
cache: true,
|
2019-06-25 00:43:08 -07:00
|
|
|
exactMatch: false,
|
2019-11-05 03:02:26 -08:00
|
|
|
protected: ['google.com/recaptcha', 'gstatic.com/recaptcha'],
|
2019-11-05 22:19:42 -08:00
|
|
|
parser: {}, // maps ua string to a ua object,
|
|
|
|
log: false
|
2017-11-22 04:35:22 -08:00
|
|
|
};
|
2020-08-04 01:22:18 -07:00
|
|
|
window.prefs = prefs; // access from popup
|
2019-11-05 22:19:42 -08:00
|
|
|
|
|
|
|
const log = (...args) => prefs.log && console.log(...args);
|
|
|
|
|
2019-11-05 06:04:18 -08:00
|
|
|
// exand comma-separated keys of prefs.custom
|
|
|
|
const expand = () => {
|
2019-11-05 22:19:42 -08:00
|
|
|
log('expanding custom rules');
|
2019-11-05 06:04:18 -08:00
|
|
|
expand.rules = {};
|
|
|
|
for (const key of Object.keys(prefs.custom)) {
|
|
|
|
for (const k of key.split(/\s*,\s*/)) {
|
|
|
|
if (k) {
|
|
|
|
expand.rules[k] = prefs.custom[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
expand.rules = {};
|
|
|
|
|
2017-11-22 04:35:22 -08:00
|
|
|
chrome.storage.local.get(prefs, ps => {
|
|
|
|
Object.assign(prefs, ps);
|
2020-08-04 01:22:18 -07:00
|
|
|
// update prefs.ua from the managed storage
|
|
|
|
chrome.storage.managed.get({
|
|
|
|
ua: ''
|
|
|
|
}, rps => {
|
|
|
|
if (!chrome.runtime.lastError && rps.ua) {
|
|
|
|
prefs.ua = rps.ua;
|
|
|
|
}
|
|
|
|
expand();
|
|
|
|
chrome.tabs.query({}, ts => {
|
|
|
|
ts.forEach(t => tabs[t.id] = t.windowId);
|
|
|
|
ua.update();
|
|
|
|
});
|
2018-08-16 03:14:11 -07:00
|
|
|
});
|
2020-08-04 01:22:18 -07:00
|
|
|
|
2018-08-16 23:16:10 -07:00
|
|
|
if (chrome.browserAction.setBadgeBackgroundColor) { // FF for Android
|
|
|
|
chrome.browserAction.setBadgeBackgroundColor({
|
|
|
|
color: prefs.color
|
|
|
|
});
|
|
|
|
}
|
2018-11-04 01:56:34 -08:00
|
|
|
// context menu
|
|
|
|
chrome.contextMenus.create({
|
|
|
|
id: 'blacklist',
|
|
|
|
title: 'Switch to "black-list" mode',
|
|
|
|
contexts: ['browser_action'],
|
|
|
|
type: 'radio',
|
|
|
|
checked: prefs.mode === 'blacklist'
|
2019-03-13 01:27:20 -07:00
|
|
|
}, () => chrome.runtime.lastError);
|
2018-11-04 01:56:34 -08:00
|
|
|
chrome.contextMenus.create({
|
|
|
|
id: 'whitelist',
|
|
|
|
title: 'Switch to "white-list" mode',
|
|
|
|
contexts: ['browser_action'],
|
|
|
|
type: 'radio',
|
|
|
|
checked: prefs.mode === 'whitelist'
|
2019-03-13 01:27:20 -07:00
|
|
|
}, () => chrome.runtime.lastError);
|
2018-11-04 01:56:34 -08:00
|
|
|
chrome.contextMenus.create({
|
|
|
|
id: 'custom',
|
|
|
|
title: 'Switch to "custom" mode',
|
|
|
|
contexts: ['browser_action'],
|
|
|
|
type: 'radio',
|
|
|
|
checked: prefs.mode === 'custom'
|
2019-03-13 01:27:20 -07:00
|
|
|
}, () => chrome.runtime.lastError);
|
2017-11-22 04:35:22 -08:00
|
|
|
});
|
|
|
|
chrome.storage.onChanged.addListener(ps => {
|
|
|
|
Object.keys(ps).forEach(key => prefs[key] = ps[key].newValue);
|
2018-08-15 07:30:29 -07:00
|
|
|
if (ps.ua || ps.mode) {
|
2018-08-16 03:14:11 -07:00
|
|
|
ua.update();
|
2017-12-13 04:45:54 -08:00
|
|
|
}
|
2020-03-15 02:44:52 -07:00
|
|
|
if (ps.custom) {
|
2019-11-05 06:04:18 -08:00
|
|
|
expand();
|
|
|
|
}
|
2017-11-22 04:35:22 -08:00
|
|
|
});
|
|
|
|
|
2019-07-31 23:53:48 -07:00
|
|
|
const ua = {
|
2018-08-16 03:14:11 -07:00
|
|
|
_obj: {
|
|
|
|
'global': {}
|
|
|
|
},
|
|
|
|
diff(tabId) { // returns true if there is per window object
|
2019-11-05 22:19:42 -08:00
|
|
|
log('ua.diff is called', tabId);
|
2018-08-16 03:14:11 -07:00
|
|
|
const windowId = tabs[tabId];
|
|
|
|
return windowId in this._obj;
|
|
|
|
},
|
|
|
|
get windows() {
|
2019-11-05 22:19:42 -08:00
|
|
|
log('ua.windows is called');
|
2018-08-16 03:14:11 -07:00
|
|
|
return Object.keys(this._obj).filter(id => id !== 'global').map(s => Number(s));
|
|
|
|
},
|
|
|
|
parse: s => {
|
2019-11-05 22:19:42 -08:00
|
|
|
log('ua.parse is called', s);
|
2019-11-05 03:02:26 -08:00
|
|
|
if (prefs.parser[s]) {
|
2019-11-05 22:19:42 -08:00
|
|
|
log('ua.parse is resolved using parser');
|
2019-11-05 03:02:26 -08:00
|
|
|
return Object.assign({
|
|
|
|
userAgent: s
|
|
|
|
}, prefs.parser[s]);
|
|
|
|
}
|
|
|
|
// build ua string from browser defaults;
|
|
|
|
s = s.replace(/\${([^}]+)}/g, (a, b) => navigator[b]);
|
2018-08-16 03:14:11 -07:00
|
|
|
const o = {};
|
|
|
|
o.userAgent = s;
|
|
|
|
o.appVersion = s
|
|
|
|
.replace(/^Mozilla\//, '')
|
|
|
|
.replace(/^Opera\//, '');
|
2019-11-05 03:02:26 -08:00
|
|
|
|
|
|
|
const isFF = /Firefox/.test(s);
|
|
|
|
const isCH = /Chrome/.test(s);
|
|
|
|
const isSF = /Safari/.test(s) && isCH === false;
|
|
|
|
|
|
|
|
if (isFF) {
|
|
|
|
o.appVersion = '5.0 ' + o.appVersion.replace('5.0 ', '').split(/[\s;]/)[0] + ')';
|
|
|
|
}
|
2019-05-11 01:20:07 -07:00
|
|
|
const p = (new UAParser(s)).getResult();
|
|
|
|
o.platform = p.os.name || '';
|
|
|
|
o.vendor = p.device.vendor || '';
|
2019-11-05 03:02:26 -08:00
|
|
|
if (isSF) {
|
|
|
|
o.vendor = 'Apple Computer, Inc.';
|
|
|
|
}
|
|
|
|
else if (isFF === false) {
|
|
|
|
o.vendor = 'Google Inc.';
|
|
|
|
}
|
2019-05-11 01:20:07 -07:00
|
|
|
o.product = p.engine.name || '';
|
2019-11-05 03:02:26 -08:00
|
|
|
if (s.indexOf('Gecko') !== -1) {
|
|
|
|
o.product = 'Gecko';
|
|
|
|
}
|
|
|
|
if (isFF) {
|
|
|
|
o.oscpu = ((p.os.name || '') + ' ' + (p.os.version || '')).trim();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
o.oscpu = '[delete]';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (o.userAgent === 'empty') {
|
|
|
|
Object.keys(o).forEach(key => {
|
|
|
|
if (key !== 'userAgent') {
|
|
|
|
o[key] = '';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-08-16 03:14:11 -07:00
|
|
|
|
|
|
|
return o;
|
|
|
|
},
|
|
|
|
object(tabId, windowId) {
|
2019-11-05 22:19:42 -08:00
|
|
|
log('ua.object is called', tabId, windowId);
|
2018-08-16 03:14:11 -07:00
|
|
|
windowId = windowId || (tabId ? tabs[tabId] : 'global');
|
|
|
|
return this._obj[windowId] || this._obj.global;
|
|
|
|
},
|
|
|
|
string(str, windowId) {
|
2019-11-05 22:19:42 -08:00
|
|
|
log('ua.string is called', str, windowId);
|
2018-08-16 03:14:11 -07:00
|
|
|
if (str) {
|
|
|
|
this._obj[windowId] = this.parse(str);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this._obj[windowId] = {};
|
|
|
|
}
|
|
|
|
},
|
2019-07-31 23:53:48 -07:00
|
|
|
tooltip(title, tabId) {
|
2019-11-05 22:19:42 -08:00
|
|
|
log('ua.tooltip is called', title, tabId);
|
2019-07-31 23:53:48 -07:00
|
|
|
chrome.browserAction.setTitle({
|
|
|
|
title,
|
|
|
|
tabId
|
|
|
|
});
|
|
|
|
},
|
|
|
|
icon(mode, tabId) {
|
2019-11-05 22:19:42 -08:00
|
|
|
log('ua.icon is called', mode, tabId);
|
2019-07-31 23:53:48 -07:00
|
|
|
chrome.browserAction.setIcon({
|
|
|
|
tabId,
|
2018-08-16 03:14:11 -07:00
|
|
|
path: {
|
2019-07-31 23:53:48 -07:00
|
|
|
'16': 'data/icons/' + (mode ? mode + '/' : '') + '16.png',
|
|
|
|
'18': 'data/icons/' + (mode ? mode + '/' : '') + '18.png',
|
|
|
|
'19': 'data/icons/' + (mode ? mode + '/' : '') + '19.png',
|
|
|
|
'32': 'data/icons/' + (mode ? mode + '/' : '') + '32.png',
|
|
|
|
'36': 'data/icons/' + (mode ? mode + '/' : '') + '36.png',
|
|
|
|
'38': 'data/icons/' + (mode ? mode + '/' : '') + '38.png',
|
|
|
|
'48': 'data/icons/' + (mode ? mode + '/' : '') + '48.png'
|
2018-08-16 03:14:11 -07:00
|
|
|
}
|
2019-07-31 23:53:48 -07:00
|
|
|
});
|
|
|
|
},
|
2019-11-05 03:02:26 -08:00
|
|
|
toolbar: ({windowId, tabId}) => {
|
2019-11-05 22:19:42 -08:00
|
|
|
log('ua.toolbar is called', windowId, tabId);
|
2018-08-16 03:14:11 -07:00
|
|
|
if (windowId) {
|
|
|
|
chrome.tabs.query({
|
|
|
|
windowId
|
|
|
|
}, tabs => tabs.forEach(tab => {
|
|
|
|
const tabId = tab.id;
|
|
|
|
chrome.browserAction.setBadgeText({
|
|
|
|
tabId,
|
|
|
|
text: ua.object(null, windowId).platform.substr(0, 3)
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
else if (tabId) {
|
|
|
|
chrome.browserAction.setBadgeText({
|
|
|
|
tabId,
|
|
|
|
text: ua.object(tabId).platform.substr(0, 3)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
update(str = prefs.ua, windowId = 'global') {
|
2019-11-05 22:19:42 -08:00
|
|
|
log('ua.update is called', str, windowId);
|
|
|
|
// clear caching
|
|
|
|
Object.keys(cache).forEach(key => delete cache[key]);
|
|
|
|
// remove old listeners
|
2018-08-16 03:14:11 -07:00
|
|
|
chrome.webRequest.onBeforeSendHeaders.removeListener(onBeforeSendHeaders);
|
|
|
|
chrome.webNavigation.onCommitted.removeListener(onCommitted);
|
2019-11-05 22:19:42 -08:00
|
|
|
// apply new ones
|
2018-08-16 03:14:11 -07:00
|
|
|
if (str || prefs.mode === 'custom' || this.windows.length) {
|
|
|
|
ua.string(str, windowId);
|
|
|
|
chrome.webRequest.onBeforeSendHeaders.addListener(onBeforeSendHeaders, {
|
|
|
|
'urls': ['*://*/*']
|
|
|
|
}, ['blocking', 'requestHeaders']);
|
|
|
|
chrome.webNavigation.onCommitted.addListener(onCommitted);
|
2019-07-31 23:53:48 -07:00
|
|
|
ua.tooltip('[Default] ' + navigator.userAgent);
|
|
|
|
ua.icon('ignored');
|
2018-08-16 03:14:11 -07:00
|
|
|
}
|
2019-07-31 23:53:48 -07:00
|
|
|
else {
|
|
|
|
ua.icon('');
|
|
|
|
ua.tooltip('[Disabled] to enable, use the popup window');
|
|
|
|
}
|
|
|
|
|
2018-08-16 03:14:11 -07:00
|
|
|
if (windowId === 'global') {
|
|
|
|
this.toolbar({str});
|
|
|
|
}
|
|
|
|
// update per window
|
|
|
|
else {
|
|
|
|
this.windows.forEach(windowId => this.toolbar({windowId}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-07-31 23:53:48 -07:00
|
|
|
window.ua = ua; // using from popup
|
2018-08-16 03:14:11 -07:00
|
|
|
// make sure to clean on window removal
|
2018-08-16 23:16:10 -07:00
|
|
|
if (chrome.windows) { // FF on Android
|
|
|
|
chrome.windows.onRemoved.addListener(windowId => delete ua._obj[windowId]);
|
|
|
|
}
|
2018-08-16 03:14:11 -07:00
|
|
|
|
2017-11-22 04:35:22 -08:00
|
|
|
function hostname(url) {
|
2019-11-05 22:19:42 -08:00
|
|
|
log('hostname', url);
|
2017-11-22 04:35:22 -08:00
|
|
|
const s = url.indexOf('//') + 2;
|
|
|
|
if (s > 1) {
|
|
|
|
let o = url.indexOf('/', s);
|
|
|
|
if (o > 0) {
|
|
|
|
return url.substring(s, o);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
o = url.indexOf('?', s);
|
|
|
|
if (o > 0) {
|
|
|
|
return url.substring(s, o);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return url.substring(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
}
|
2018-04-10 00:50:58 -07:00
|
|
|
// returns true, false or an object; true: ignore, false: use from ua object.
|
2018-08-16 03:14:11 -07:00
|
|
|
function match({url, tabId}) {
|
2019-11-05 22:19:42 -08:00
|
|
|
log('match', url, tabId);
|
2019-11-05 06:04:18 -08:00
|
|
|
const h = hostname(url);
|
|
|
|
|
2017-11-22 04:35:22 -08:00
|
|
|
if (prefs.mode === 'blacklist') {
|
|
|
|
if (prefs.blacklist.length) {
|
2019-03-13 02:24:03 -07:00
|
|
|
return prefs.blacklist.some(s => {
|
2018-11-04 01:37:09 -08:00
|
|
|
if (s === h) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (prefs.exactMatch === false) {
|
2019-03-13 02:29:37 -07:00
|
|
|
return s.endsWith('.' + h) || h.endsWith('.' + s);
|
2018-11-04 01:37:09 -08:00
|
|
|
}
|
|
|
|
});
|
2017-11-22 04:35:22 -08:00
|
|
|
}
|
|
|
|
}
|
2017-12-13 04:45:54 -08:00
|
|
|
else if (prefs.mode === 'whitelist') {
|
2017-12-13 00:45:52 -08:00
|
|
|
if (prefs.whitelist.length) {
|
2018-11-04 01:37:09 -08:00
|
|
|
return prefs.whitelist.some(s => {
|
|
|
|
if (s === h) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (prefs.exactMatch === false) {
|
2019-03-13 02:29:37 -07:00
|
|
|
return s.endsWith('.' + h) || h.endsWith('.' + s);
|
2018-11-04 01:37:09 -08:00
|
|
|
}
|
|
|
|
}) === false;
|
2017-11-22 04:35:22 -08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2017-12-13 04:45:54 -08:00
|
|
|
else {
|
2019-11-05 06:04:18 -08:00
|
|
|
const [hh] = h.split(':');
|
|
|
|
const key = Object.keys(expand.rules).filter(s => {
|
|
|
|
if (s === h || s === hh) {
|
2018-11-04 02:16:25 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (prefs.exactMatch === false) {
|
2019-11-05 06:04:18 -08:00
|
|
|
return s.endsWith('.' + h) || h.endsWith('.' + s) || s.endsWith('.' + hh) || hh.endsWith('.' + s);
|
2018-11-04 02:16:25 -08:00
|
|
|
}
|
|
|
|
}).shift();
|
2019-11-05 06:04:18 -08:00
|
|
|
let s = expand.rules[key] || expand.rules['*'];
|
2018-05-15 00:54:51 -07:00
|
|
|
// if s is an array select a random string
|
|
|
|
if (Array.isArray(s)) {
|
|
|
|
s = s[Math.floor(Math.random() * s.length)];
|
2019-05-11 01:57:29 -07:00
|
|
|
// set session mode if key is either on _[key] or _['*'] lists
|
2019-11-05 06:04:18 -08:00
|
|
|
if (expand.rules._ && Array.isArray(expand.rules._)) {
|
|
|
|
if (expand.rules._.indexOf(key) !== -1) {
|
|
|
|
expand.rules[key] = s;
|
2019-05-11 01:57:29 -07:00
|
|
|
}
|
2019-11-05 06:04:18 -08:00
|
|
|
else if (expand.rules._.indexOf('*') !== -1) {
|
|
|
|
if (expand.rules[key]) {
|
|
|
|
expand.rules[key] = s;
|
2019-05-11 02:09:41 -07:00
|
|
|
}
|
2019-11-05 06:04:18 -08:00
|
|
|
else if (expand.rules['*']) {
|
|
|
|
expand.rules['*'] = s;
|
2019-05-11 02:09:41 -07:00
|
|
|
}
|
2019-05-11 01:57:29 -07:00
|
|
|
}
|
|
|
|
}
|
2018-05-15 00:54:51 -07:00
|
|
|
}
|
2018-04-10 00:50:58 -07:00
|
|
|
if (s) {
|
2018-08-16 03:14:11 -07:00
|
|
|
return ua.parse(s);
|
2018-04-10 00:50:58 -07:00
|
|
|
}
|
|
|
|
else {
|
2018-08-16 03:14:11 -07:00
|
|
|
return !ua.object(tabId).userAgent;
|
2018-04-10 00:50:58 -07:00
|
|
|
}
|
2017-12-13 04:45:54 -08:00
|
|
|
}
|
2017-11-22 04:35:22 -08:00
|
|
|
}
|
|
|
|
|
2019-07-31 23:53:48 -07:00
|
|
|
const onBeforeSendHeaders = ({tabId, url, requestHeaders, type}) => {
|
2018-08-20 04:41:47 -07:00
|
|
|
if (type === 'main_frame' || prefs.cache === false) {
|
2018-08-16 03:14:11 -07:00
|
|
|
cache[tabId] = match({url, tabId});
|
2017-11-22 04:35:22 -08:00
|
|
|
}
|
2017-12-13 04:45:54 -08:00
|
|
|
if (cache[tabId] === true) {
|
2019-07-31 23:53:48 -07:00
|
|
|
return {};
|
2017-11-22 04:35:22 -08:00
|
|
|
}
|
2019-06-25 00:43:08 -07:00
|
|
|
if (prefs.protected.some(s => url.indexOf(s) !== -1)) {
|
|
|
|
return {};
|
|
|
|
}
|
2018-08-16 03:14:11 -07:00
|
|
|
const str = (cache[tabId] || ua.object(tabId)).userAgent;
|
2018-04-10 00:50:58 -07:00
|
|
|
if (str) {
|
|
|
|
for (let i = 0, name = requestHeaders[0].name; i < requestHeaders.length; i += 1, name = requestHeaders[i].name) {
|
|
|
|
if (name === 'User-Agent' || name === 'user-agent') {
|
2018-11-04 01:18:40 -08:00
|
|
|
requestHeaders[i].value = str === 'empty' ? '' : str;
|
2018-04-10 00:50:58 -07:00
|
|
|
return {
|
|
|
|
requestHeaders
|
|
|
|
};
|
2017-12-13 04:45:54 -08:00
|
|
|
}
|
2017-09-13 03:18:12 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-07-31 23:53:48 -07:00
|
|
|
const onCommitted = ({frameId, url, tabId}) => {
|
2018-04-10 00:50:58 -07:00
|
|
|
if (url && (url.startsWith('http') || url.startsWith('ftp')) || url === 'about:blank') {
|
|
|
|
if (cache[tabId] === true) {
|
2017-11-22 04:35:22 -08:00
|
|
|
return;
|
|
|
|
}
|
2018-08-16 03:14:11 -07:00
|
|
|
const o = cache[tabId] || ua.object(tabId);
|
2018-04-10 00:50:58 -07:00
|
|
|
if (o.userAgent) {
|
|
|
|
chrome.tabs.executeScript(tabId, {
|
|
|
|
runAt: 'document_start',
|
|
|
|
frameId,
|
|
|
|
code: `{
|
|
|
|
const script = document.createElement('script');
|
|
|
|
script.textContent = \`{
|
2019-11-05 03:02:26 -08:00
|
|
|
const o = JSON.parse('${JSON.stringify(o)}');
|
|
|
|
for (const key of Object.keys(o)) {
|
|
|
|
navigator.__defineGetter__(key, () => {
|
|
|
|
if (o[key] === '[delete]') {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
else if (o[key] === 'empty') {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
return o[key];
|
|
|
|
});
|
|
|
|
}
|
2019-03-14 00:14:11 -07:00
|
|
|
}\`;
|
2018-04-10 00:50:58 -07:00
|
|
|
document.documentElement.appendChild(script);
|
2018-08-16 03:14:11 -07:00
|
|
|
script.remove();
|
2018-04-10 00:50:58 -07:00
|
|
|
}`
|
2020-03-15 01:01:29 -07:00
|
|
|
}, () => {
|
2019-11-05 22:19:42 -08:00
|
|
|
const lastError = chrome.runtime.lastError;
|
|
|
|
if (lastError &&
|
|
|
|
lastError.message !== 'No matching message handler' && // Firefox on Windows
|
|
|
|
lastError.message !== 'document.documentElement is null' // Firefox on Windows
|
|
|
|
) {
|
2019-07-31 23:53:48 -07:00
|
|
|
if (frameId === 0) {
|
2019-11-05 06:04:18 -08:00
|
|
|
ua.tooltip('[Default] ' + navigator.userAgent, tabId);
|
2019-07-31 23:53:48 -07:00
|
|
|
ua.icon('ignored', tabId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (frameId === 0) {
|
2019-11-05 06:04:18 -08:00
|
|
|
ua.tooltip('[Custom] ' + o.userAgent, tabId);
|
2019-07-31 23:53:48 -07:00
|
|
|
ua.icon('active', tabId);
|
|
|
|
}
|
|
|
|
});
|
2018-04-10 00:50:58 -07:00
|
|
|
}
|
2017-09-13 03:18:12 -07:00
|
|
|
}
|
2018-08-16 03:14:11 -07:00
|
|
|
// change the toolbar icon if there is a per window UA setting
|
|
|
|
if (frameId === 0 && ua.diff(tabId)) {
|
|
|
|
ua.toolbar({tabId});
|
2017-09-13 03:18:12 -07:00
|
|
|
}
|
2018-08-16 03:14:11 -07:00
|
|
|
};
|
2018-11-04 01:56:34 -08:00
|
|
|
// context menu
|
|
|
|
chrome.contextMenus.onClicked.addListener(info => chrome.storage.local.set({
|
|
|
|
mode: info.menuItemId
|
|
|
|
}));
|
2017-09-13 03:18:12 -07:00
|
|
|
|
2020-03-15 01:01:29 -07:00
|
|
|
/* FAQs & Feedback */
|
2019-05-11 01:20:07 -07:00
|
|
|
{
|
2020-08-03 21:47:39 -07:00
|
|
|
const {management, runtime: {onInstalled, setUninstallURL, getManifest}, storage, tabs} = chrome;
|
2020-03-15 01:01:29 -07:00
|
|
|
if (navigator.webdriver !== true) {
|
2020-08-03 21:47:39 -07:00
|
|
|
const page = getManifest().homepage_url;
|
|
|
|
const {name, version} = getManifest();
|
2020-03-15 01:01:29 -07:00
|
|
|
onInstalled.addListener(({reason, previousVersion}) => {
|
2020-08-03 21:47:39 -07:00
|
|
|
management.getSelf(({installType}) => installType === 'normal' && storage.local.get({
|
2020-03-15 01:01:29 -07:00
|
|
|
'faqs': true,
|
|
|
|
'last-update': 0
|
|
|
|
}, prefs => {
|
|
|
|
if (reason === 'install' || (prefs.faqs && reason === 'update')) {
|
|
|
|
const doUpdate = (Date.now() - prefs['last-update']) / 1000 / 60 / 60 / 24 > 45;
|
|
|
|
if (doUpdate && previousVersion !== version) {
|
2020-08-03 21:47:39 -07:00
|
|
|
tabs.create({
|
|
|
|
url: page + '?version=' + version + (previousVersion ? '&p=' + previousVersion : '') + '&type=' + reason,
|
2020-03-15 01:01:29 -07:00
|
|
|
active: reason === 'install'
|
|
|
|
});
|
2020-08-03 21:47:39 -07:00
|
|
|
storage.local.set({'last-update': Date.now()});
|
2020-03-15 01:01:29 -07:00
|
|
|
}
|
2019-05-11 01:20:07 -07:00
|
|
|
}
|
2020-08-03 21:47:39 -07:00
|
|
|
}));
|
2017-09-14 05:50:53 -07:00
|
|
|
});
|
2020-03-15 01:01:29 -07:00
|
|
|
setUninstallURL(page + '?rd=feedback&name=' + encodeURIComponent(name) + '&version=' + version);
|
|
|
|
}
|
2017-09-14 05:50:53 -07:00
|
|
|
}
|