2017-09-13 03:18:12 -07:00
|
|
|
/* globals UAParser */
|
|
|
|
'use strict';
|
|
|
|
|
2018-08-16 23:16:10 -07:00
|
|
|
document.body.dataset.android = navigator.userAgent.indexOf('Android') !== -1;
|
|
|
|
|
2017-09-13 03:18:12 -07:00
|
|
|
var json = [];
|
|
|
|
|
|
|
|
function filter(list) {
|
|
|
|
return list.filter(o => {
|
|
|
|
const browser = document.getElementById('browser').value;
|
2017-09-14 05:50:53 -07:00
|
|
|
if (browser && browser !== 'skipped') {
|
2017-09-13 03:18:12 -07:00
|
|
|
try {
|
|
|
|
if (o.browser.name.toLowerCase().trim().indexOf(browser.trim()) === -1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const os = document.getElementById('os').value;
|
2017-09-14 05:50:53 -07:00
|
|
|
if (os && os !== 'skipped') {
|
2017-09-13 03:18:12 -07:00
|
|
|
try {
|
|
|
|
if (o.os.name.toLowerCase().trim().indexOf(os.trim()) === -1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function sort(arr) {
|
|
|
|
function sort(a = '', b = '') {
|
|
|
|
const pa = a.split('.');
|
|
|
|
const pb = b.split('.');
|
|
|
|
for (let i = 0; i < 3; i++) {
|
|
|
|
const na = Number(pa[i]);
|
|
|
|
const nb = Number(pb[i]);
|
|
|
|
if (na > nb) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (nb > na) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!isNaN(na) && isNaN(nb)) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (isNaN(na) && !isNaN(nb)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
const list = arr.sort((a, b) => sort(a.browser.version, b.browser.version));
|
|
|
|
if (document.getElementById('sort').value === 'true') {
|
|
|
|
return list.reverse();
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
function parse(j) {
|
|
|
|
json = j.map(s => UAParser(s));
|
|
|
|
}
|
|
|
|
|
|
|
|
function update() {
|
|
|
|
const list = sort(filter(json));
|
|
|
|
const t = document.querySelector('template');
|
|
|
|
const parent = document.getElementById('list');
|
|
|
|
const tbody = parent.querySelector('tbody');
|
|
|
|
tbody.textContent = '';
|
|
|
|
parent.dataset.loading = true;
|
2017-09-14 05:50:53 -07:00
|
|
|
window.setTimeout(() => {
|
|
|
|
const fragment = document.createDocumentFragment();
|
|
|
|
list.forEach(o => {
|
|
|
|
const clone = document.importNode(t.content, true);
|
|
|
|
const second = clone.querySelector('td:nth-child(2)');
|
|
|
|
second.title = second.textContent = o.browser.name + ' ' + (o.browser.version || ' ');
|
|
|
|
const third = clone.querySelector('td:nth-child(3)');
|
|
|
|
third.title = third.textContent = o.os.name + ' ' + (o.os.version || ' ');
|
|
|
|
const forth = clone.querySelector('td:nth-child(4)');
|
|
|
|
forth.title = forth.textContent = o.ua;
|
|
|
|
fragment.appendChild(clone);
|
|
|
|
});
|
|
|
|
tbody.appendChild(fragment);
|
|
|
|
document.getElementById('custom').placeholder = `Filter among ${list.length} "User-Agent" strings`;
|
|
|
|
parent.dataset.loading = false;
|
|
|
|
}, 1000);
|
2017-09-13 03:18:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
document.addEventListener('change', ({target}) => {
|
|
|
|
if (target.closest('#filter')) {
|
|
|
|
localStorage.setItem(target.id, target.value);
|
|
|
|
update();
|
|
|
|
}
|
2018-04-10 00:50:58 -07:00
|
|
|
if (target.type === 'radio') {
|
2017-09-13 03:18:12 -07:00
|
|
|
document.getElementById('ua').value = target.closest('tr').querySelector('td:nth-child(4)').textContent;
|
2018-08-16 03:14:11 -07:00
|
|
|
document.getElementById('ua').dispatchEvent(new Event('input'));
|
2017-09-13 03:18:12 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
document.getElementById('list').addEventListener('click', ({target}) => {
|
|
|
|
const tr = target.closest('tr');
|
|
|
|
if (tr) {
|
|
|
|
const input = tr.querySelector('input');
|
|
|
|
if (input && input !== target) {
|
|
|
|
input.checked = !input.checked;
|
|
|
|
input.dispatchEvent(new Event('change', {
|
|
|
|
bubbles: true
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
document.getElementById('custom').addEventListener('keyup', ({target}) => {
|
|
|
|
const value = target.value;
|
|
|
|
[...document.querySelectorAll('#list tr')]
|
|
|
|
.forEach(tr => tr.dataset.matched = tr.textContent.toLowerCase().indexOf(value.toLowerCase()) !== -1);
|
|
|
|
});
|
|
|
|
|
|
|
|
// init
|
|
|
|
document.getElementById('os').value = localStorage.getItem('os') || 'windows';
|
|
|
|
document.getElementById('browser').value = localStorage.getItem('browser') || 'chrome';
|
|
|
|
chrome.storage.local.get({
|
|
|
|
ua: ''
|
|
|
|
}, prefs => document.getElementById('ua').value = prefs.ua || navigator.userAgent);
|
|
|
|
chrome.storage.onChanged.addListener(prefs => {
|
|
|
|
if (prefs.ua) {
|
|
|
|
document.getElementById('ua').value = prefs.ua.newValue || navigator.userAgent;
|
2018-08-16 03:14:11 -07:00
|
|
|
document.getElementById('ua').dispatchEvent(new Event('input'));
|
2017-09-13 03:18:12 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
window.addEventListener('load', () => {
|
2017-09-14 05:50:53 -07:00
|
|
|
window.setTimeout(() => {
|
|
|
|
const req = new XMLHttpRequest();
|
|
|
|
req.onload = () => {
|
|
|
|
parse(req.response);
|
|
|
|
update();
|
|
|
|
};
|
|
|
|
req.open('GET', 'list.json');
|
|
|
|
req.responseType = 'json';
|
|
|
|
req.send();
|
|
|
|
}, 100);
|
2017-09-13 03:18:12 -07:00
|
|
|
});
|
|
|
|
|
2017-11-22 04:35:22 -08:00
|
|
|
function msg(msg) {
|
|
|
|
const info = document.getElementById('info');
|
|
|
|
info.textContent = msg;
|
2018-08-16 03:14:11 -07:00
|
|
|
window.setTimeout(() => info.textContent = 'User-Agent String:', 2000);
|
2017-11-22 04:35:22 -08:00
|
|
|
}
|
|
|
|
|
2017-09-13 03:18:12 -07:00
|
|
|
// commands
|
|
|
|
document.addEventListener('click', ({target}) => {
|
|
|
|
const cmd = target.dataset.cmd;
|
|
|
|
if (cmd) {
|
|
|
|
if (cmd === 'apply') {
|
2017-11-22 04:35:22 -08:00
|
|
|
const value = document.getElementById('ua').value;
|
|
|
|
if (value === navigator.userAgent) {
|
2018-08-16 03:14:11 -07:00
|
|
|
msg('Default UA, press the reset button instead');
|
2017-11-22 04:35:22 -08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
msg('user-agent is set');
|
|
|
|
}
|
2017-09-13 03:18:12 -07:00
|
|
|
chrome.storage.local.set({
|
2017-11-22 04:35:22 -08:00
|
|
|
ua: value === navigator.userAgent ? '' : value
|
2017-09-13 03:18:12 -07:00
|
|
|
});
|
|
|
|
}
|
2018-08-16 03:14:11 -07:00
|
|
|
else if (cmd === 'window') {
|
|
|
|
const value = document.getElementById('ua').value;
|
|
|
|
chrome.tabs.query({
|
|
|
|
active: true,
|
|
|
|
currentWindow: true
|
|
|
|
}, ([tab]) => chrome.runtime.getBackgroundPage(bg => bg.ua.update(value, tab.windowId)));
|
|
|
|
}
|
2017-09-13 03:18:12 -07:00
|
|
|
else if (cmd === 'reset') {
|
|
|
|
const input = document.querySelector('#list :checked');
|
|
|
|
if (input) {
|
|
|
|
input.checked = false;
|
|
|
|
}
|
|
|
|
chrome.storage.local.set({
|
|
|
|
ua: ''
|
|
|
|
});
|
2017-11-22 04:35:22 -08:00
|
|
|
msg('reset to default');
|
2017-09-13 03:18:12 -07:00
|
|
|
}
|
2017-11-19 01:32:13 -08:00
|
|
|
else if (cmd === 'refresh') {
|
|
|
|
chrome.tabs.query({
|
|
|
|
active: true,
|
|
|
|
currentWindow: true
|
|
|
|
}, ([tab]) => chrome.tabs.reload(tab.id, {
|
|
|
|
bypassCache: true
|
|
|
|
}));
|
|
|
|
}
|
2018-05-15 00:54:51 -07:00
|
|
|
else if (cmd === 'options') {
|
|
|
|
chrome.runtime.openOptionsPage();
|
|
|
|
}
|
2018-08-16 03:14:11 -07:00
|
|
|
else if (cmd === 'reload') {
|
|
|
|
chrome.runtime.reload();
|
|
|
|
}
|
2017-09-13 03:18:12 -07:00
|
|
|
}
|
|
|
|
});
|
2018-08-16 03:14:11 -07:00
|
|
|
|
|
|
|
document.getElementById('ua').addEventListener('input', e => {
|
|
|
|
document.querySelector('[data-cmd=apply]').disabled = e.target.value === '';
|
|
|
|
document.querySelector('[data-cmd=window]').disabled = e.target.value === '';
|
|
|
|
});
|