diff options
author | gorhill <rhill@raymondhill.net> | 2014-12-31 17:26:17 -0500 |
---|---|---|
committer | gorhill <rhill@raymondhill.net> | 2014-12-31 17:26:17 -0500 |
commit | 3c941f8309c56287092b2422c1197f0fbd30f687 (patch) | |
tree | dd3a379989edd175e11e449829cd34b2561bc82e /platform | |
parent | ceaf920cffacb3b611179a185d76faff075b1d58 (diff) | |
download | uBlock-3c941f8309c56287092b2422c1197f0fbd30f687.zip uBlock-3c941f8309c56287092b2422c1197f0fbd30f687.tar.gz uBlock-3c941f8309c56287092b2422c1197f0fbd30f687.tar.bz2 |
another round of work re dynamic filtering
Diffstat (limited to 'platform')
-rw-r--r-- | platform/chromium/manifest.json | 2 | ||||
-rw-r--r-- | platform/chromium/vapi-background.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/platform/chromium/manifest.json b/platform/chromium/manifest.json index 3034902..75f0875 100644 --- a/platform/chromium/manifest.json +++ b/platform/chromium/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "µBlock", - "version": "0.8.2.3", + "version": "0.8.5.0", "default_locale": "en", "description": "__MSG_extShortDesc__", diff --git a/platform/chromium/vapi-background.js b/platform/chromium/vapi-background.js index 208d3eb..66223a8 100644 --- a/platform/chromium/vapi-background.js +++ b/platform/chromium/vapi-background.js @@ -425,7 +425,7 @@ vAPI.onLoadAllCompleted = function() { vAPI.tabs.injectScript(tabId, { file: 'js/contentscript-start.js', allFrames: true, - runAt: 'document_idle' + runAt: 'document_start' }, function(){ scriptEnd(tabId); }); }; var bindToTabs = function(tabs) { |