2017-12-03 21:12:09 +00:00
|
|
|
/* global CodeMirror semverCompare closeCurrentTab */
|
2017-11-24 16:33:50 +00:00
|
|
|
/* global messageBox download chromeLocal */
|
2017-09-24 03:39:04 +00:00
|
|
|
'use strict';
|
|
|
|
|
2017-10-29 17:22:10 +00:00
|
|
|
(() => {
|
2017-11-28 19:19:00 +00:00
|
|
|
// TODO: remove .replace(/^\?/, '') when minimum_chrome_version >= 52 (https://crbug.com/601425)
|
|
|
|
const params = new URLSearchParams(location.search.replace(/^\?/, ''));
|
2017-09-25 12:01:50 +00:00
|
|
|
let liveReload = false;
|
2018-01-04 10:36:27 +00:00
|
|
|
let installed = null;
|
|
|
|
let installedDup = null;
|
2017-09-24 03:39:04 +00:00
|
|
|
|
2017-11-24 16:33:50 +00:00
|
|
|
const tabId = Number(params.get('tabId'));
|
2017-12-31 14:58:35 +00:00
|
|
|
let tabUrl;
|
2017-11-24 16:33:50 +00:00
|
|
|
let port;
|
|
|
|
|
2017-11-25 17:24:15 +00:00
|
|
|
if (params.has('direct')) {
|
2017-11-24 16:33:50 +00:00
|
|
|
$('.live-reload').remove();
|
|
|
|
getCodeDirectly();
|
|
|
|
} else {
|
|
|
|
port = chrome.tabs.connect(tabId);
|
|
|
|
port.postMessage({method: 'getSourceCode'});
|
|
|
|
port.onMessage.addListener(msg => {
|
|
|
|
switch (msg.method) {
|
|
|
|
case 'getSourceCodeResponse':
|
|
|
|
if (msg.error) {
|
|
|
|
messageBox.alert(msg.error);
|
|
|
|
} else {
|
|
|
|
initSourceCode(msg.sourceCode);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'sourceCodeChanged':
|
|
|
|
if (msg.error) {
|
|
|
|
messageBox.alert(msg.error);
|
|
|
|
} else {
|
|
|
|
liveReloadUpdate(msg.sourceCode);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
2017-12-31 14:58:35 +00:00
|
|
|
port.onDisconnect.addListener(onPortDisconnected);
|
2017-11-24 16:33:50 +00:00
|
|
|
}
|
2017-09-24 03:39:04 +00:00
|
|
|
|
2018-01-04 10:36:56 +00:00
|
|
|
const cm = CodeMirror($('.main'), {
|
|
|
|
readOnly: true,
|
|
|
|
colorpicker: true,
|
|
|
|
});
|
2017-09-25 12:01:50 +00:00
|
|
|
let liveReloadPending = Promise.resolve();
|
2017-11-22 10:19:27 +00:00
|
|
|
window.addEventListener('resize', adjustCodeHeight);
|
2017-09-25 12:01:50 +00:00
|
|
|
|
2017-11-24 17:27:09 +00:00
|
|
|
setTimeout(() => {
|
|
|
|
if (!installed) {
|
2017-12-03 21:12:09 +00:00
|
|
|
$('.header').appendChild($create('.lds-spinner',
|
|
|
|
new Array(12).fill($create('div')).map(e => e.cloneNode())));
|
2017-11-24 17:27:09 +00:00
|
|
|
}
|
|
|
|
}, 200);
|
|
|
|
|
2017-12-31 14:58:35 +00:00
|
|
|
getTab(tabId).then(tab => (tabUrl = tab.url));
|
|
|
|
chrome.tabs.onUpdated.addListener((id, {url}) =>
|
|
|
|
id === tabId &&
|
|
|
|
url && url !== tabUrl &&
|
|
|
|
closeCurrentTab());
|
|
|
|
|
2017-09-25 12:01:50 +00:00
|
|
|
function liveReloadUpdate(sourceCode) {
|
|
|
|
liveReloadPending = liveReloadPending.then(() => {
|
|
|
|
const scrollInfo = cm.getScrollInfo();
|
|
|
|
const cursor = cm.getCursor();
|
|
|
|
cm.setValue(sourceCode);
|
|
|
|
cm.setCursor(cursor);
|
|
|
|
cm.scrollTo(scrollInfo.left, scrollInfo.top);
|
|
|
|
|
2017-11-24 15:26:20 +00:00
|
|
|
return sendMessage({
|
2018-01-04 10:36:27 +00:00
|
|
|
id: (installed || installedDup).id,
|
2017-09-25 12:01:50 +00:00
|
|
|
method: 'saveUsercss',
|
|
|
|
reason: 'update',
|
|
|
|
sourceCode
|
2017-11-09 05:00:08 +00:00
|
|
|
}).then(updateMeta)
|
|
|
|
.catch(showError);
|
2017-09-25 12:01:50 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-01-04 10:36:27 +00:00
|
|
|
function updateMeta(style, dup = installedDup) {
|
|
|
|
installedDup = dup;
|
2017-09-25 12:01:50 +00:00
|
|
|
const data = style.usercssData;
|
|
|
|
const dupData = dup && dup.usercssData;
|
|
|
|
const versionTest = dup && semverCompare(data.version, dupData.version);
|
|
|
|
|
|
|
|
cm.setPreprocessor(data.preprocessor);
|
|
|
|
|
2018-01-04 10:36:27 +00:00
|
|
|
const installButtonLabel = t(
|
|
|
|
installed ? 'installButtonInstalled' :
|
|
|
|
!dup ? 'installButton' :
|
|
|
|
versionTest > 0 ? 'installButtonUpdate' : 'installButtonReinstall'
|
|
|
|
);
|
|
|
|
document.title = `${installButtonLabel} ${data.name}`;
|
|
|
|
|
|
|
|
$('.install').textContent = installButtonLabel;
|
|
|
|
$('.install').classList.add(
|
|
|
|
installed ? 'installed' :
|
|
|
|
!dup ? 'install' :
|
|
|
|
versionTest > 0 ? 'update' :
|
|
|
|
'reinstall');
|
2017-09-25 12:01:50 +00:00
|
|
|
$('.set-update-url').title = dup && dup.updateUrl && t('installUpdateFrom', dup.updateUrl) || '';
|
|
|
|
$('.meta-name').textContent = data.name;
|
|
|
|
$('.meta-version').textContent = data.version;
|
|
|
|
$('.meta-description').textContent = data.description;
|
|
|
|
|
2017-10-07 10:04:37 +00:00
|
|
|
if (data.author) {
|
|
|
|
$('.meta-author').parentNode.style.display = '';
|
|
|
|
$('.meta-author').textContent = '';
|
|
|
|
$('.meta-author').appendChild(makeAuthor(data.author));
|
|
|
|
} else {
|
|
|
|
$('.meta-author').parentNode.style.display = 'none';
|
|
|
|
}
|
2017-09-25 12:01:50 +00:00
|
|
|
|
|
|
|
$('.meta-license').parentNode.style.display = data.license ? '' : 'none';
|
|
|
|
$('.meta-license').textContent = data.license;
|
|
|
|
|
|
|
|
$('.applies-to').textContent = '';
|
|
|
|
getAppliesTo(style).forEach(pattern =>
|
2017-12-03 21:12:09 +00:00
|
|
|
$('.applies-to').appendChild($create('li', pattern)));
|
2017-09-25 12:01:50 +00:00
|
|
|
|
|
|
|
$('.external-link').textContent = '';
|
|
|
|
const externalLink = makeExternalLink();
|
|
|
|
if (externalLink) {
|
|
|
|
$('.external-link').appendChild(externalLink);
|
|
|
|
}
|
|
|
|
|
2017-11-22 10:19:27 +00:00
|
|
|
$('.header').classList.add('meta-init');
|
|
|
|
$('.header').classList.remove('meta-init-error');
|
2017-12-02 16:54:54 +00:00
|
|
|
setTimeout(() => $.remove('.lds-spinner'), 1000);
|
2017-11-24 17:27:09 +00:00
|
|
|
|
2017-11-22 10:19:27 +00:00
|
|
|
showError('');
|
|
|
|
requestAnimationFrame(adjustCodeHeight);
|
|
|
|
|
2017-10-12 08:10:17 +00:00
|
|
|
function makeAuthor(text) {
|
|
|
|
const match = text.match(/^(.+?)(?:\s+<(.+?)>)?(?:\s+\((.+?)\))$/);
|
|
|
|
if (!match) {
|
|
|
|
return document.createTextNode(text);
|
|
|
|
}
|
|
|
|
const [, name, email, url] = match;
|
|
|
|
const frag = document.createDocumentFragment();
|
|
|
|
if (email) {
|
2017-12-03 21:12:09 +00:00
|
|
|
frag.appendChild($createLink(`mailto:${email}`, name));
|
2017-10-12 08:10:17 +00:00
|
|
|
} else {
|
2017-12-03 21:12:09 +00:00
|
|
|
frag.appendChild($create('span', name));
|
2017-10-12 08:10:17 +00:00
|
|
|
}
|
|
|
|
if (url) {
|
2017-12-03 21:12:09 +00:00
|
|
|
frag.appendChild($createLink(url,
|
|
|
|
$create('SVG:svg.svg-icon', {viewBox: '0 0 20 20'},
|
|
|
|
$create('SVG:path', {
|
2017-11-09 00:01:45 +00:00
|
|
|
d: 'M4,4h5v2H6v8h8v-3h2v5H4V4z M11,3h6v6l-2-2l-4,4L9,9l4-4L11,3z'
|
2017-12-03 21:12:09 +00:00
|
|
|
}))
|
2017-10-12 08:15:45 +00:00
|
|
|
));
|
2017-10-12 08:10:17 +00:00
|
|
|
}
|
|
|
|
return frag;
|
|
|
|
}
|
|
|
|
|
2017-09-25 12:01:50 +00:00
|
|
|
function makeExternalLink() {
|
2017-12-03 21:12:09 +00:00
|
|
|
const urls = [
|
|
|
|
data.homepageURL && [data.homepageURL, t('externalHomepage')],
|
|
|
|
data.supportURL && [data.supportURL, t('externalSupport')],
|
|
|
|
];
|
|
|
|
return (data.homepageURL || data.supportURL) && (
|
|
|
|
$create('div', [
|
|
|
|
$create('h3', t('externalLink')),
|
|
|
|
$create('ul', urls.map(args => args &&
|
|
|
|
$create('li',
|
|
|
|
$createLink(...args)
|
|
|
|
)
|
|
|
|
))
|
|
|
|
]));
|
2017-09-25 12:01:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function showError(err) {
|
2017-11-22 10:19:27 +00:00
|
|
|
$('.warnings').textContent = '';
|
|
|
|
if (err) {
|
|
|
|
$('.warnings').appendChild(buildWarning(err));
|
|
|
|
}
|
|
|
|
$('.warnings').classList.toggle('visible', Boolean(err));
|
|
|
|
$('.container').classList.toggle('has-warnings', Boolean(err));
|
|
|
|
adjustCodeHeight();
|
2017-09-25 12:01:50 +00:00
|
|
|
}
|
2017-09-24 03:39:04 +00:00
|
|
|
|
|
|
|
function install(style) {
|
2017-11-24 15:26:20 +00:00
|
|
|
installed = style;
|
2017-09-25 12:01:50 +00:00
|
|
|
|
2017-12-02 16:54:54 +00:00
|
|
|
$$.remove('.warning');
|
2017-12-01 23:43:01 +00:00
|
|
|
$('button.install').disabled = true;
|
|
|
|
$('button.install').classList.add('installed');
|
2018-01-04 10:43:57 +00:00
|
|
|
$('#live-reload-install-hint').classList.toggle('hidden', !liveReload);
|
2017-12-01 23:43:01 +00:00
|
|
|
$('h2.installed').classList.add('active');
|
2017-11-24 15:26:20 +00:00
|
|
|
$('.set-update-url input[type=checkbox]').disabled = true;
|
|
|
|
$('.set-update-url').title = style.updateUrl ?
|
|
|
|
t('installUpdateFrom', style.updateUrl) : '';
|
2017-09-25 12:01:50 +00:00
|
|
|
|
2017-11-24 15:26:20 +00:00
|
|
|
updateMeta(style);
|
2017-09-25 12:01:50 +00:00
|
|
|
|
2017-11-28 21:05:52 +00:00
|
|
|
if (!liveReload && !prefs.get('openEditInWindow')) {
|
|
|
|
chrome.tabs.update({url: '/edit.html?id=' + style.id});
|
|
|
|
} else {
|
2018-01-01 17:02:49 +00:00
|
|
|
API.openEditor({id: style.id});
|
2017-11-28 21:05:52 +00:00
|
|
|
if (!liveReload) {
|
|
|
|
closeCurrentTab();
|
|
|
|
}
|
2017-11-24 15:26:20 +00:00
|
|
|
}
|
2017-10-06 08:29:06 +00:00
|
|
|
|
2017-11-24 15:26:20 +00:00
|
|
|
window.dispatchEvent(new CustomEvent('installed'));
|
2017-09-24 03:39:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function initSourceCode(sourceCode) {
|
|
|
|
cm.setValue(sourceCode);
|
2017-11-22 10:19:27 +00:00
|
|
|
cm.refresh();
|
2018-01-01 17:02:49 +00:00
|
|
|
API.buildUsercss({sourceCode, checkDup: true})
|
2018-01-04 10:36:27 +00:00
|
|
|
.then(init)
|
2017-11-24 15:26:20 +00:00
|
|
|
.catch(err => {
|
|
|
|
$('.header').classList.add('meta-init-error');
|
|
|
|
showError(err);
|
|
|
|
});
|
2017-09-24 03:39:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function buildWarning(err) {
|
2017-12-03 20:29:36 +00:00
|
|
|
const contents = Array.isArray(err) ?
|
2018-01-01 17:02:49 +00:00
|
|
|
[$create('pre', err.join('\n'))] :
|
2017-12-03 20:29:36 +00:00
|
|
|
[err && err.message || err || 'Unknown error'];
|
|
|
|
if (Number.isInteger(err.index)) {
|
|
|
|
const pos = cm.posFromIndex(err.index);
|
|
|
|
contents[0] = `${pos.line + 1}:${pos.ch + 1} ` + contents[0];
|
2017-12-03 21:12:09 +00:00
|
|
|
contents.push($create('pre', drawLinePointer(pos)));
|
2017-12-03 20:29:36 +00:00
|
|
|
setTimeout(() => {
|
|
|
|
cm.scrollIntoView({line: pos.line + 1, ch: pos.ch}, window.innerHeight / 4);
|
|
|
|
cm.setCursor(pos.line, pos.ch + 1);
|
|
|
|
cm.focus();
|
|
|
|
});
|
|
|
|
}
|
2017-12-03 21:12:09 +00:00
|
|
|
return $create('.warning', [
|
2017-09-24 03:39:04 +00:00
|
|
|
t('parseUsercssError'),
|
2017-12-03 20:29:36 +00:00
|
|
|
'\n',
|
|
|
|
...contents,
|
2017-12-03 21:12:09 +00:00
|
|
|
]);
|
2017-09-24 03:39:04 +00:00
|
|
|
}
|
|
|
|
|
2017-12-03 20:29:36 +00:00
|
|
|
function drawLinePointer(pos) {
|
|
|
|
const SIZE = 60;
|
|
|
|
const line = cm.getLine(pos.line);
|
|
|
|
const numTabs = pos.ch + 1 - line.slice(0, pos.ch + 1).replace(/\t/g, '').length;
|
|
|
|
const pointer = ' '.repeat(pos.ch) + '^';
|
|
|
|
const start = Math.max(Math.min(pos.ch - SIZE / 2, line.length - SIZE), 0);
|
|
|
|
const end = Math.min(Math.max(pos.ch + SIZE / 2, SIZE), line.length);
|
|
|
|
const leftPad = start !== 0 ? '...' : '';
|
|
|
|
const rightPad = end !== line.length ? '...' : '';
|
|
|
|
return (
|
|
|
|
leftPad +
|
|
|
|
line.slice(start, end).replace(/\t/g, ' '.repeat(cm.options.tabSize)) +
|
|
|
|
rightPad +
|
|
|
|
'\n' +
|
|
|
|
' '.repeat(leftPad.length + numTabs * cm.options.tabSize) +
|
|
|
|
pointer.slice(start, end)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-09-24 03:39:04 +00:00
|
|
|
function init({style, dup}) {
|
|
|
|
const data = style.usercssData;
|
|
|
|
const dupData = dup && dup.usercssData;
|
|
|
|
const versionTest = dup && semverCompare(data.version, dupData.version);
|
|
|
|
|
2017-09-25 12:01:50 +00:00
|
|
|
updateMeta(style, dup);
|
|
|
|
|
2017-09-24 08:54:21 +00:00
|
|
|
// update UI
|
2017-09-24 03:39:04 +00:00
|
|
|
if (versionTest < 0) {
|
|
|
|
$('.actions').parentNode.insertBefore(
|
2017-12-03 21:12:09 +00:00
|
|
|
$create('.warning', t('versionInvalidOlder')),
|
2017-09-24 03:39:04 +00:00
|
|
|
$('.actions')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$('button.install').onclick = () => {
|
2017-11-24 16:40:18 +00:00
|
|
|
(!dup ?
|
|
|
|
Promise.resolve(true) :
|
|
|
|
messageBox.confirm(t('styleInstallOverwrite', [
|
|
|
|
data.name,
|
|
|
|
dupData.version,
|
|
|
|
data.version,
|
|
|
|
]))
|
2017-11-24 15:26:20 +00:00
|
|
|
).then(ok => ok &&
|
2018-01-01 17:02:49 +00:00
|
|
|
API.saveUsercss(Object.assign(style, dup && {reason: 'update'}))
|
|
|
|
.then(r => install(r instanceof Object ? r : deepCopy(r)))
|
2017-12-03 20:29:36 +00:00
|
|
|
.catch(err => messageBox.alert(t('styleInstallFailed', err)))
|
|
|
|
);
|
2017-09-24 03:39:04 +00:00
|
|
|
};
|
|
|
|
|
2017-09-24 08:54:21 +00:00
|
|
|
// set updateUrl
|
2017-12-06 19:35:19 +00:00
|
|
|
const checker = $('.set-update-url input[type=checkbox]');
|
|
|
|
// prefer the installation URL unless drag'n'dropped on the manage page
|
|
|
|
const installationUrl = (params.get('updateUrl') || '').replace(/^blob.+/, '');
|
|
|
|
const updateUrl = new URL(installationUrl || style.updateUrl || 'foo:bar');
|
2017-11-11 05:10:43 +00:00
|
|
|
$('.set-update-url > span').textContent = t('installUpdateFromLabel');
|
2017-09-24 03:39:04 +00:00
|
|
|
if (dup && dup.updateUrl === updateUrl.href) {
|
2017-12-06 19:35:19 +00:00
|
|
|
checker.checked = true;
|
2017-09-24 03:39:04 +00:00
|
|
|
// there is no way to "unset" updateUrl, you can only overwrite it.
|
2017-12-06 19:35:19 +00:00
|
|
|
checker.disabled = true;
|
|
|
|
} else if (updateUrl.protocol === 'foo:') {
|
|
|
|
// drag'n'dropped on the manage page and the style doesn't have @updateURL
|
|
|
|
checker.disabled = true;
|
2017-10-11 13:45:17 +00:00
|
|
|
} else if (updateUrl.protocol !== 'file:') {
|
2017-12-06 19:35:19 +00:00
|
|
|
checker.checked = true;
|
2017-09-24 03:39:04 +00:00
|
|
|
style.updateUrl = updateUrl.href;
|
|
|
|
}
|
2017-12-06 19:35:19 +00:00
|
|
|
checker.onchange = () => {
|
|
|
|
style.updateUrl = checker.checked ? updateUrl.href : null;
|
2017-09-24 03:39:04 +00:00
|
|
|
};
|
2017-12-06 19:35:19 +00:00
|
|
|
checker.onchange();
|
|
|
|
$('.set-update-url p').textContent = updateUrl.href.length < 300 ? updateUrl.href :
|
|
|
|
updateUrl.href.slice(0, 300) + '...';
|
2017-09-24 03:39:04 +00:00
|
|
|
|
2017-11-24 16:33:50 +00:00
|
|
|
if (!port) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-09-25 12:01:50 +00:00
|
|
|
// live reload
|
|
|
|
const setLiveReload = $('.live-reload input[type=checkbox]');
|
|
|
|
if (updateUrl.protocol !== 'file:') {
|
|
|
|
setLiveReload.parentNode.remove();
|
2017-09-24 03:39:04 +00:00
|
|
|
} else {
|
2017-09-25 12:01:50 +00:00
|
|
|
setLiveReload.addEventListener('change', () => {
|
|
|
|
liveReload = setLiveReload.checked;
|
2018-01-04 10:36:27 +00:00
|
|
|
if (installed || installedDup) {
|
2017-10-04 08:32:44 +00:00
|
|
|
const method = 'liveReload' + (liveReload ? 'Start' : 'Stop');
|
|
|
|
port.postMessage({method});
|
2018-01-04 10:36:27 +00:00
|
|
|
$('.install').disabled = liveReload;
|
|
|
|
$('#live-reload-install-hint').classList.toggle('hidden', !liveReload);
|
2017-10-04 08:32:44 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
window.addEventListener('installed', () => {
|
|
|
|
if (liveReload) {
|
|
|
|
port.postMessage({method: 'liveReloadStart'});
|
|
|
|
}
|
2017-09-25 12:01:50 +00:00
|
|
|
});
|
2017-09-24 03:39:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getAppliesTo(style) {
|
|
|
|
function *_gen() {
|
|
|
|
for (const section of style.sections) {
|
|
|
|
for (const type of ['urls', 'urlPrefixes', 'domains', 'regexps']) {
|
|
|
|
if (section[type]) {
|
|
|
|
yield *section[type];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const result = [..._gen()];
|
|
|
|
if (!result.length) {
|
|
|
|
result.push(chrome.i18n.getMessage('appliesToEverything'));
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2017-11-22 10:19:27 +00:00
|
|
|
|
|
|
|
function adjustCodeHeight() {
|
|
|
|
// Chrome-only bug (apparently): it doesn't limit the scroller element height
|
|
|
|
const scroller = cm.display.scroller;
|
|
|
|
const prevWindowHeight = adjustCodeHeight.prevWindowHeight;
|
|
|
|
if (scroller.scrollHeight === scroller.clientHeight ||
|
|
|
|
prevWindowHeight && window.innerHeight !== prevWindowHeight) {
|
|
|
|
adjustCodeHeight.prevWindowHeight = window.innerHeight;
|
|
|
|
cm.setSize(null, $('.main').offsetHeight - $('.warnings').offsetHeight);
|
|
|
|
}
|
|
|
|
}
|
2017-11-24 16:33:50 +00:00
|
|
|
|
|
|
|
function getCodeDirectly() {
|
|
|
|
// FF applies page CSP even to content scripts, https://bugzil.la/1267027
|
|
|
|
// To circumvent that, the bg process downloads the code directly
|
2017-11-25 17:24:15 +00:00
|
|
|
const key = 'tempUsercssCode' + tabId;
|
2017-11-24 16:33:50 +00:00
|
|
|
chrome.storage.local.get(key, data => {
|
|
|
|
const code = data && data[key];
|
|
|
|
|
|
|
|
// bg already downloaded the code
|
|
|
|
if (typeof code === 'string') {
|
|
|
|
initSourceCode(code);
|
|
|
|
chrome.storage.local.remove(key);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// bg still downloads the code
|
|
|
|
if (code && code.loading) {
|
|
|
|
const waitForCodeInStorage = (changes, area) => {
|
|
|
|
if (area === 'local' && key in changes) {
|
|
|
|
initSourceCode(changes[key].newValue);
|
|
|
|
chrome.storage.onChanged.removeListener(waitForCodeInStorage);
|
|
|
|
chrome.storage.local.remove(key);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
chrome.storage.onChanged.addListener(waitForCodeInStorage);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// on the off-chance dbExecChromeStorage.getAll ran right after bg download was saved
|
|
|
|
download(params.get('updateUrl'))
|
|
|
|
.then(initSourceCode)
|
|
|
|
.catch(err => messageBox.alert(t('styleInstallFailed', String(err))));
|
|
|
|
});
|
|
|
|
}
|
2017-12-31 14:58:35 +00:00
|
|
|
|
|
|
|
function onPortDisconnected() {
|
|
|
|
chrome.tabs.get(tabId, tab => {
|
|
|
|
if (chrome.runtime.lastError) {
|
|
|
|
closeCurrentTab();
|
|
|
|
} else if (tab.url === tabUrl) {
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-09-24 03:39:04 +00:00
|
|
|
})();
|