1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-18 17:02:27 +02:00
uBlock/js/tab.js

158 lines
5.2 KiB
JavaScript
Raw Normal View History

2014-06-24 00:42:43 +02:00
/*******************************************************************************
µBlock - a Chromium browser extension to block requests.
Copyright (C) 2014 Raymond Hill
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see {http://www.gnu.org/licenses/}.
Home: https://github.com/gorhill/uBlock
*/
/* global chrome, µBlock */
/******************************************************************************/
(function(){
2014-07-07 01:14:32 +02:00
// When the DOM content of root frame is loaded, this means the tab
// content has changed.
function onDOMContentLoaded(details) {
if ( details.frameId !== 0 ) {
2014-06-24 00:42:43 +02:00
return;
}
2014-07-07 01:14:32 +02:00
µBlock.updateBadgeAsync(details.tabId);
2014-06-24 00:42:43 +02:00
}
2014-07-07 01:14:32 +02:00
chrome.webNavigation.onDOMContentLoaded.addListener(onDOMContentLoaded);
2014-06-24 00:42:43 +02:00
2014-07-07 01:14:32 +02:00
// It may happen the URL in the tab changes, while the page's document
// stays the same (for instance, Google Maps). Without this listener,
// the extension icon won't be properly refreshed.
2014-06-24 00:42:43 +02:00
function onTabUpdated(tabId, changeInfo, tab) {
if ( !tab.url || tab.url === '' ) {
return;
}
2014-07-14 17:24:59 +02:00
var µb = µBlock;
if ( !changeInfo.url || !µb.pageStores[tabId] ) {
return;
}
// If URL is unsupported scheme, unbind tab
if ( changeInfo.url && changeInfo.url.slice(0, 4) !== 'http' ) {
µb.unbindTabFromPageStats(tabId);
2014-06-24 00:42:43 +02:00
}
2014-07-14 17:24:59 +02:00
µb.updateBadgeAsync(tabId);
2014-06-24 00:42:43 +02:00
}
chrome.tabs.onUpdated.addListener(onTabUpdated);
2014-07-07 02:57:23 +02:00
function onTabRemoved(tabId) {
if ( tabId < 0 ) {
return;
}
µBlock.unbindTabFromPageStats(tabId);
}
chrome.tabs.onRemoved.addListener(onTabRemoved);
2014-06-24 00:42:43 +02:00
// Initialize internal state with maybe already existing tabs
chrome.tabs.query({ url: '<all_urls>' }, function(tabs) {
var i = tabs.length;
while ( i-- ) {
µBlock.bindTabToPageStats(tabs[i].id, tabs[i].url);
}
});
})();
/******************************************************************************/
/******************************************************************************/
// https://github.com/gorhill/httpswitchboard/issues/303
// Some kind of trick going on here:
// Any scheme other than 'http' and 'https' is remapped into a fake
// URL which trick the rest of µBlock into being able to process an
// otherwise unmanageable scheme. µBlock needs web page to have a proper
// hostname to work properly, so just like the 'chromium-behind-the-scene'
// fake domain name, we map unknown schemes into a fake '{scheme}-scheme'
// hostname. This way, for a specific scheme you can create scope with
// rules which will apply only to that scheme.
µBlock.normalizePageURL = function(pageURL) {
var uri = this.URI.set(pageURL);
if ( uri.scheme === 'https' || uri.scheme === 'http' ) {
return uri.normalizedURI();
}
return '';
2014-06-27 23:06:42 +02:00
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
// Create an entry for the tab if it doesn't exist.
µBlock.bindTabToPageStats = function(tabId, pageURL) {
2014-07-07 01:14:32 +02:00
this.updateBadgeAsync(tabId);
2014-06-24 00:42:43 +02:00
// https://github.com/gorhill/httpswitchboard/issues/303
2014-07-14 17:24:59 +02:00
// Normalize page URL
2014-06-24 00:42:43 +02:00
pageURL = this.normalizePageURL(pageURL);
2014-07-14 17:24:59 +02:00
// Do not create a page store for URLs which are of no interests
2014-06-24 00:42:43 +02:00
if ( pageURL === '' ) {
2014-07-14 17:24:59 +02:00
this.unbindTabFromPageStats(tabId);
2014-06-24 00:42:43 +02:00
return null;
}
2014-07-16 23:20:11 +02:00
//console.debug('µBlock> bindTabToPageStats(%d, "%s")', tabId, pageURL);
2014-07-14 17:24:59 +02:00
// Reuse page store if one exists: this allows to guess if a tab is
// a popup.
2014-06-24 00:42:43 +02:00
var pageStore = this.pageStores[tabId];
2014-07-14 17:24:59 +02:00
if ( pageStore ) {
pageStore.reuse(pageURL);
} else {
2014-06-24 00:42:43 +02:00
pageStore = this.PageStore.factory(tabId, pageURL);
}
this.pageStores[tabId] = pageStore;
return pageStore;
};
µBlock.unbindTabFromPageStats = function(tabId) {
2014-07-16 23:20:11 +02:00
//console.debug('µBlock> unbindTabFromPageStats(%d)', tabId);
2014-06-24 00:42:43 +02:00
delete this.pageStores[tabId];
};
/******************************************************************************/
µBlock.pageUrlFromTabId = function(tabId) {
var pageStore = this.pageStores[tabId];
return pageStore ? pageStore.pageURL : '';
};
µBlock.pageUrlFromPageStats = function(pageStats) {
if ( pageStats ) {
return pageStats.pageURL;
}
return '';
};
µBlock.pageStoreFromTabId = function(tabId) {
return this.pageStores[tabId];
};
/******************************************************************************/
µBlock.forceReload = function(pageURL) {
var tabId = this.tabIdFromPageUrl(pageURL);
if ( tabId ) {
chrome.tabs.reload(tabId, { bypassCache: true });
}
};