talkdesk-useragent-switcher/data/options/index.js

93 lines
2.8 KiB
JavaScript
Raw Normal View History

'use strict';
2018-08-15 04:47:16 -07:00
function notify(msg, period = 750) {
// Update status to let user know options were saved.
const status = document.getElementById('status');
status.textContent = msg;
clearTimeout(notify.id);
2018-08-15 04:47:16 -07:00
notify.id = setTimeout(() => status.textContent = '', period);
}
function prepare(str) {
return str.split(/\s*,\s*/)
.map(s => s.replace('http://', '')
.replace('https://', '').split('/')[0].trim())
.filter((h, i, l) => h && l.indexOf(h) === i);
}
function save() {
let custom = {};
2018-08-15 04:47:16 -07:00
const c = document.getElementById('custom').value;
try {
2018-08-15 04:47:16 -07:00
custom = JSON.parse(c);
}
catch (e) {
2018-08-15 04:47:16 -07:00
window.setTimeout(() => {
notify('Custom JSON error: ' + e.message, 5000);
document.getElementById('custom').value = c;
}, 1000);
}
chrome.storage.local.set({
2017-11-22 04:38:04 -08:00
faqs: document.getElementById('faqs').checked,
2018-08-20 04:41:47 -07:00
cache: document.getElementById('cache').checked,
blacklist: prepare(document.getElementById('blacklist').value),
whitelist: prepare(document.getElementById('whitelist').value),
custom,
mode: document.querySelector('[name="mode"]:checked').value
}, () => {
restore();
notify('Options saved.');
});
}
function restore() {
chrome.storage.local.get({
2017-11-22 04:38:04 -08:00
faqs: true,
2018-08-20 04:41:47 -07:00
cache: true,
mode: 'blacklist',
whitelist: [],
blacklist: [],
custom: {}
}, prefs => {
2017-11-22 04:38:04 -08:00
document.getElementById('faqs').checked = prefs.faqs;
2018-08-20 04:41:47 -07:00
document.getElementById('cache').checked = prefs.cache;
document.querySelector(`[name="mode"][value="${prefs.mode}"`).checked = true;
document.getElementById('blacklist').value = prefs.blacklist.join(', ');
document.getElementById('whitelist').value = prefs.whitelist.join(', ');
document.getElementById('custom').value = JSON.stringify(prefs.custom, null, 2);
});
}
document.addEventListener('DOMContentLoaded', restore);
document.getElementById('save').addEventListener('click', save);
2018-04-10 00:50:58 -07:00
document.getElementById('sample').addEventListener('click', e => {
e.preventDefault();
document.getElementById('custom').value = JSON.stringify({
'www.google.com': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',
2018-05-15 00:54:51 -07:00
'www.bing.com': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0',
'www.example.com': ['random-useragent-1', 'random-user-agent-2'],
'*': 'useragent-for-all-hostnames'
}, null, 2);
});
document.getElementById('donate').addEventListener('click', () => {
chrome.tabs.create({
2018-04-10 00:50:58 -07:00
url: chrome.runtime.getManifest().homepage_url + '?rd=donate'
});
});
2018-04-10 00:50:58 -07:00
document.getElementById('reset').addEventListener('click', e => {
if (e.detail === 1) {
notify('Double-click to reset!');
}
else {
localStorage.clear();
chrome.storage.local.clear(() => {
chrome.runtime.reload();
window.close();
});
}
});