25 lines
1.0 KiB
JavaScript
25 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
// preventing reregistration if reinjected by tabs.executeScript for whatever reason, just in case
|
|
if (typeof self.oldCode !== 'string') {
|
|
self.oldCode = (document.querySelector('body > pre') || document.body).textContent;
|
|
chrome.runtime.onConnect.addListener(port => {
|
|
if (port.name !== 'downloadSelf') return;
|
|
port.onMessage.addListener(({id, force}) => {
|
|
fetch(location.href, {mode: 'same-origin'})
|
|
.then(r => r.text())
|
|
.then(code => ({id, code: force || code !== self.oldCode ? code : null}))
|
|
.catch(error => ({id, error: error.message || `${error}`}))
|
|
.then(msg => {
|
|
port.postMessage(msg);
|
|
if (msg.code != null) self.oldCode = msg.code;
|
|
});
|
|
});
|
|
// FF keeps content scripts connected on navigation https://github.com/openstyles/stylus/issues/864
|
|
addEventListener('pagehide', () => port.disconnect(), {once: true});
|
|
});
|
|
}
|
|
|
|
// passing the result to tabs.executeScript
|
|
self.oldCode; // eslint-disable-line no-unused-expressions
|