OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 20 matching lines...) Expand all Loading... |
31 browser.tabs.query({}, tabs => | 31 browser.tabs.query({}, tabs => |
32 { | 32 { |
33 // We find a tab ourselves because Edge has a bug when quering tabs with | 33 // We find a tab ourselves because Edge has a bug when quering tabs with |
34 // extension URL protocol: | 34 // extension URL protocol: |
35 // https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/8094
141/ | 35 // https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/8094
141/ |
36 // https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/8604
703/ | 36 // https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/8604
703/ |
37 // Firefox won't let us query for moz-extension:// pages either, though | 37 // Firefox won't let us query for moz-extension:// pages either, though |
38 // starting with Firefox 56 an extension can query for its own URLs: | 38 // starting with Firefox 56 an extension can query for its own URLs: |
39 // https://bugzilla.mozilla.org/show_bug.cgi?id=1271354 | 39 // https://bugzilla.mozilla.org/show_bug.cgi?id=1271354 |
40 let fullOptionsUrl = browser.extension.getURL(optionsUrl); | 40 let fullOptionsUrl = browser.extension.getURL(optionsUrl); |
41 callback(tabs.find(element => element.url == fullOptionsUrl)); | 41 let optionsTab = tabs.find(tab => tab.url == fullOptionsUrl); |
| 42 |
| 43 if (optionsTab) |
| 44 callback(optionsTab); |
| 45 else |
| 46 { |
| 47 // It seems that the url property isn't always set for the tab with |
| 48 // Firefox 57 on Windows 10 until the tab has finished loading. Until |
| 49 // then the url is given as "about:blank", but the title is the URL |
| 50 // we expect (minus the protocol part). |
| 51 let {hostname, pathname} = new URL(fullOptionsUrl); |
| 52 let potentialOptionsTab = tabs.find( |
| 53 tab => tab.url == "about:blank" && |
| 54 tab.title == hostname + pathname && |
| 55 tab.status == "loading" |
| 56 ); |
| 57 |
| 58 if (potentialOptionsTab) |
| 59 { |
| 60 let onRemoved; |
| 61 let updateListener = (tabId, changeInfo, tab) => |
| 62 { |
| 63 if (tabId == potentialOptionsTab.id && |
| 64 changeInfo.status == "complete") |
| 65 { |
| 66 browser.tabs.onUpdated.removeListener(updateListener); |
| 67 browser.tabs.onRemoved.removeListener(onRemoved); |
| 68 if (tab.url == fullOptionsUrl) |
| 69 callback(tab); |
| 70 } |
| 71 }; |
| 72 browser.tabs.onUpdated.addListener(updateListener); |
| 73 onRemoved = removedTabId => |
| 74 { |
| 75 if (removedTabId == potentialOptionsTab.id) |
| 76 { |
| 77 browser.tabs.onUpdated.removeListener(updateListener); |
| 78 browser.tabs.onRemoved.removeListener(onRemoved); |
| 79 callback(); |
| 80 } |
| 81 }; |
| 82 browser.tabs.onRemoved.addListener(onRemoved); |
| 83 } |
| 84 else |
| 85 callback(); |
| 86 } |
42 }); | 87 }); |
43 } | 88 } |
44 | 89 |
45 function returnShowOptionsCall(optionsTab, callback) | 90 function returnShowOptionsCall(optionsTab, callback) |
46 { | 91 { |
47 if (!callback) | 92 if (!callback) |
48 return; | 93 return; |
49 | 94 |
50 if (optionsTab) | 95 if (optionsTab) |
51 { | 96 { |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 args: [ | 188 args: [ |
144 { | 189 { |
145 host: getDecodedHostname(currentPage.url).replace(/^www\./, ""), | 190 host: getDecodedHostname(currentPage.url).replace(/^www\./, ""), |
146 whitelisted: !!checkWhitelisted(currentPage) | 191 whitelisted: !!checkWhitelisted(currentPage) |
147 } | 192 } |
148 ] | 193 ] |
149 }); | 194 }); |
150 }); | 195 }); |
151 }); | 196 }); |
152 }); | 197 }); |
OLD | NEW |