| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*
- * Copyright 2018 Gildas Lormeau
- * contact : gildas.lormeau <at> gmail.com
- *
- * This file is part of SingleFile.
- *
- * SingleFile is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * SingleFile is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with SingleFile. If not, see <http://www.gnu.org/licenses/>.
- */
- /* global singlefile, chrome */
- (() => {
- const CHROME_STORE_URL = "https://chrome.google.com";
- chrome.tabs.onActivated.addListener(activeInfo => chrome.tabs.get(activeInfo.tabId, tab => singlefile.ui.notifyTabActive(tab.id, isAllowedURL(tab.url))));
- chrome.tabs.onCreated.addListener(tab => singlefile.ui.notifyTabActive(tab.id, isAllowedURL(tab.url)));
- chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => singlefile.ui.notifyTabActive(tab.id, isAllowedURL(tab.url)));
- chrome.tabs.onRemoved.addListener(tabId => singlefile.ui.notifyTabRemoved(tabId));
- chrome.runtime.onMessage.addListener((request, sender) => {
- if (request.processStart) {
- singlefile.ui.notifyProcessProgress(sender.tab.id, request.index, request.maxIndex);
- }
- if (request.processProgress) {
- singlefile.ui.notifyProcessProgress(sender.tab.id, request.index, request.maxIndex);
- }
- if (request.processEnd) {
- singlefile.ui.notifyProcessEnd(sender.tab.id);
- }
- if (request.processError) {
- singlefile.ui.notifyProcessError(sender.tab.id);
- }
- return false;
- });
- chrome.browserAction.onClicked.addListener(tab => {
- if (isAllowedURL(tab.url)) {
- singlefile.ui.notifyProcessInit(tab.id);
- chrome.tabs.sendMessage(tab.id, { processStart: true, options: singlefile.config.get() });
- }
- });
- function isAllowedURL(url) {
- return (url.startsWith("http://") || url.startsWith("https://")) && !url.startsWith(CHROME_STORE_URL);
- }
- })();
|