142 lines
4.6 KiB
JavaScript
142 lines
4.6 KiB
JavaScript
var defaultSites = {
|
|
'Baltimore Sun': 'baltimoresun.com',
|
|
'Barron\'s': 'barrons.com',
|
|
'Bloomberg': 'bloomberg.com',
|
|
'Caixin': 'caixinglobal.com',
|
|
'Crain\'s Chicago Business': 'chicagobusiness.com',
|
|
'Chicago Tribune': 'chicagotribune.com',
|
|
'Corriere Della Sera': 'corriere.it',
|
|
'Daily Press': 'dailypress.com',
|
|
'Dagens Nyheter': 'dn.se',
|
|
'Denver Post': 'denverpost.com',
|
|
'Dynamed Plus': 'dynamed.com',
|
|
'The Economist (javascript disabled)': 'economist.com',
|
|
'Encyclopedia Britannica': 'britannica.com',
|
|
'Examiner': 'examiner.com.au',
|
|
'Financial News': 'fnlondon.com',
|
|
'Financial Times': 'ft.com',
|
|
'Foreign Affairs': 'foreignaffairs.com',
|
|
'Foreign Policy': 'foreignpolicy.com',
|
|
'Glassdoor': 'glassdoor.com',
|
|
'Haaretz': 'haaretz.co.il',
|
|
'Haaretz English': 'haaretz.com',
|
|
'Harper\'s Mag': 'harpers.org',
|
|
'Hartford Courant': 'courant.com',
|
|
'Harvard Business Review': 'hbr.org',
|
|
'Inc.com': 'inc.com',
|
|
'Irish Times': 'irishtimes.com',
|
|
'La Repubblica': 'repubblica.it',
|
|
'Les Echos': 'lesechos.fr',
|
|
'Liberation': 'liberation.fr',
|
|
'Los Angeles Times': 'latimes.com',
|
|
'Medium': 'medium.com',
|
|
'MIT Technology Review': 'technologyreview.com',
|
|
'Newsrep': 'thenewsrep.com',
|
|
'New York Magazine': 'nymag.com',
|
|
'Nikkei Asian Review': 'asia.nikkei.com',
|
|
'NRC': 'nrc.nl',
|
|
'OrlandoSentinel': 'orlandosentinel.com',
|
|
'Quora': 'quora.com',
|
|
'San Francisco Chronicle': 'sfchronicle.com',
|
|
'Scientific American': 'scientificamerican.com',
|
|
'SunSentinel': 'sun-sentinel.com',
|
|
'The Advocate': 'theadvocate.com.au',
|
|
'The Age': 'theage.com.au',
|
|
'The Australian': 'theaustralian.com.au',
|
|
'The Australian Financial Review (javascript disabled)': 'afr.com',
|
|
'The Boston Globe': 'bostonglobe.com',
|
|
'The Globe and Mail (javascript disabled)': 'theglobeandmail.com',
|
|
'The Japan Times': 'japantimes.co.jp',
|
|
'TheMarker': 'themarker.com',
|
|
'The Mercury News': 'mercurynews.com',
|
|
'The Morning Call': 'mcall.com',
|
|
'The Nation': 'thenation.com',
|
|
'The News-Gazette': 'news-gazette.com',
|
|
'The New Statesman': 'newstatesman.com',
|
|
'The New York Times': 'nytimes.com',
|
|
'The New Yorker': 'newyorker.com',
|
|
'The Seattle Times': 'seattletimes.com',
|
|
'The Spectator': 'spectator.co.uk',
|
|
'The Sydney Morning Herald': 'smh.com.au',
|
|
'The Toronto Star (javascript disabled)': 'thestar.com',
|
|
'The Washington Post': 'washingtonpost.com',
|
|
'The Wall Street Journal': 'wsj.com',
|
|
'Winston-Salem Journal': 'journalnow.com',
|
|
'Vanity Fair': 'vanityfair.com',
|
|
'Wired': 'wired.com'
|
|
};
|
|
|
|
// Saves options to chrome.storage
|
|
function save_options() {
|
|
var gh_url = document.getElementById('bypass_sites').value;
|
|
var inputEls = document.querySelectorAll('#bypass_sites input');
|
|
var sites = {};
|
|
|
|
var sites = Array.from(inputEls).reduce(function(memo, inputEl) {
|
|
if (inputEl.checked) {
|
|
memo[inputEl.dataset.key] = inputEl.dataset.value;
|
|
}
|
|
return memo;
|
|
}, {});
|
|
|
|
chrome.storage.sync.set({
|
|
sites: sites
|
|
}, function() {
|
|
// Update status to let user know options were saved.
|
|
var status = document.getElementById('status');
|
|
status.textContent = 'Options saved.';
|
|
setTimeout(function() {
|
|
status.textContent = '';
|
|
window.close();
|
|
}, 800);
|
|
});
|
|
}
|
|
|
|
// Restores checkbox input states using the preferences
|
|
// stored in chrome.storage.
|
|
function renderOptions() {
|
|
chrome.storage.sync.get({
|
|
sites: {}
|
|
}, function(items) {
|
|
var sites = items.sites;
|
|
var sitesEl = document.getElementById('bypass_sites');
|
|
for (var key in defaultSites) {
|
|
if (!defaultSites.hasOwnProperty(key)) {
|
|
continue;
|
|
}
|
|
|
|
var value = defaultSites[key];
|
|
var labelEl = document.createElement('label');
|
|
var inputEl = document.createElement('input');
|
|
inputEl.type = 'checkbox';
|
|
inputEl.dataset.key = key;
|
|
inputEl.dataset.value = value;
|
|
inputEl.checked = key in sites;
|
|
|
|
labelEl.appendChild(inputEl);
|
|
labelEl.appendChild(document.createTextNode(' '+key));
|
|
sitesEl.appendChild(labelEl);
|
|
}
|
|
});
|
|
}
|
|
|
|
function selectAll() {
|
|
var inputEls = Array.from(document.querySelectorAll('input'));
|
|
inputEls.forEach(function(inputEl) {
|
|
inputEl.checked = true;
|
|
});
|
|
}
|
|
|
|
function selectNone() {
|
|
var inputEls = Array.from(document.querySelectorAll('input'));
|
|
inputEls.forEach(function(inputEl) {
|
|
inputEl.checked = false;
|
|
});
|
|
}
|
|
|
|
document.addEventListener('DOMContentLoaded', renderOptions);
|
|
document.getElementById('save').addEventListener('click', save_options);
|
|
document.getElementById('select-all').addEventListener('click', selectAll);
|
|
document.getElementById('select-none').addEventListener('click', selectNone);
|
|
|