2017-08-28 22:48:24 +00:00
|
|
|
// Saves options to chrome.storage
|
|
|
|
function save_options() {
|
|
|
|
var hideDickbar = document.getElementById('dickbar').checked;
|
2017-08-31 02:45:22 +00:00
|
|
|
var disableLazyImages = document.getElementById('images').checked;
|
2017-08-28 22:48:24 +00:00
|
|
|
chrome.storage.sync.set({
|
2017-08-31 02:45:22 +00:00
|
|
|
hideDickbar: hideDickbar,
|
|
|
|
disableLazyImages: disableLazyImages
|
2017-08-28 22:48:24 +00:00
|
|
|
}, function() {
|
|
|
|
// Update status to let user know options were saved.
|
|
|
|
var status = document.getElementById('status');
|
|
|
|
status.textContent = 'Readability improved! (Settings saved.)';
|
|
|
|
setTimeout(function() {
|
|
|
|
status.textContent = '';
|
|
|
|
}, 2500);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Restores select box and checkbox state using the preferences
|
|
|
|
// stored in chrome.storage.
|
|
|
|
function restore_options() {
|
|
|
|
chrome.storage.sync.get({
|
2017-08-31 02:45:22 +00:00
|
|
|
hideDickbar: false,
|
|
|
|
disableLazyImages: false
|
2017-08-28 22:48:24 +00:00
|
|
|
}, function(items) {
|
|
|
|
document.getElementById('dickbar').checked = items.hideDickbar;
|
2017-08-31 02:45:22 +00:00
|
|
|
document.getElementById('images').checked = items.disableLazyImages;
|
2017-08-28 22:48:24 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
document.addEventListener('DOMContentLoaded', restore_options);
|
|
|
|
document.getElementById('save').addEventListener('click', save_options);
|