1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00

new revision

This commit is contained in:
gorhill 2015-01-18 22:26:07 -05:00
parent 9593dc30dd
commit 5ee417e110
5 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "µBlock",
"version": "0.8.5.6",
"version": "0.8.5.7",
"default_locale": "en",
"description": "__MSG_extShortDesc__",

View File

@ -45,7 +45,7 @@ vAPI.firefox = true;
// TODO: read these data from somewhere...
vAPI.app = {
name: 'µBlock',
version: '0.8.5.6'
version: '0.8.5.7'
};
/******************************************************************************/

View File

@ -14,7 +14,7 @@
<key>CFBundleVersion</key>
<string>{buildNumber}</string>
<key>URL</key>
<string>https://chrismatic.io/ublock/ublock-0.8.5.6.safariextz</string>
<string>https://chrismatic.io/ublock/ublock-0.8.5.7.safariextz</string>
</dict>
</array>
</dict>

View File

@ -662,7 +662,7 @@
// https://github.com/gorhill/uBlock/issues/540
// Disabling local mirroring for the time being
userSettings.experimentalEnabled = false;
µb.mirrors.toggle(userSettings.experimentalEnabled);
µb.mirrors.toggle(false /* userSettings.experimentalEnabled */);
µb.contextMenu.toggle(userSettings.contextMenuEnabled);
µb.dynamicNetFilteringEngine.fromString(userSettings.dynamicFilteringString);

View File

@ -255,7 +255,7 @@ var onHeadersReceived = function(details) {
// https://github.com/gorhill/uBlock/issues/540
// Disabling local mirroring for the time being
//if ( details.parentFrameId === -1 ) {
// pageStore.skipLocalMirroring = headerStartWith(details.responseHeaders, 'content-security-policy') !== '';
// pageStore.skipLocalMirroring = headerStartsWith(details.responseHeaders, 'content-security-policy') !== '';
//}
var requestURL = details.url;
@ -324,7 +324,7 @@ var headerValue = function(headers, name) {
/******************************************************************************/
var headerStartWith = function(headers, prefix) {
var headerStartsWith = function(headers, prefix) {
var prefixLen = prefix.length;
var i = headers.length;
while ( i-- ) {