mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
new revision + fixed frame parent id
This commit is contained in:
parent
df69e22bb9
commit
ab99683454
3 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
"manifest_version": 2,
|
||||
|
||||
"name": "µBlock",
|
||||
"version": "0.8.5.5",
|
||||
"version": "0.8.5.6",
|
||||
|
||||
"default_locale": "en",
|
||||
"description": "__MSG_extShortDesc__",
|
||||
|
|
|
@ -45,7 +45,7 @@ vAPI.firefox = true;
|
|||
// TODO: read these data from somewhere...
|
||||
vAPI.app = {
|
||||
name: 'µBlock',
|
||||
version: '0.8.5.5'
|
||||
version: '0.8.5.6'
|
||||
};
|
||||
|
||||
/******************************************************************************/
|
||||
|
@ -945,7 +945,7 @@ var httpObserver = {
|
|||
result = vAPI.net.onHeadersReceived.callback({
|
||||
url: URI.asciiSpec,
|
||||
tabId: channelData[1],
|
||||
parentFrameId: -1,
|
||||
parentFrameId: channelData[0] === this.MAIN_FRAME ? -1 : 0,
|
||||
responseHeaders: result ? [{name: topic, value: result}] : []
|
||||
});
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<key>CFBundleVersion</key>
|
||||
<string>{buildNumber}</string>
|
||||
<key>URL</key>
|
||||
<string>https://chrismatic.io/ublock/ublock-0.8.5.5.safariextz</string>
|
||||
<string>https://chrismatic.io/ublock/ublock-0.8.5.6.safariextz</string>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
|
|
Loading…
Reference in a new issue