Left: | ||
Right: |
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 |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 "use strict"; | 18 "use strict"; |
19 | 19 |
20 let panelWindow = null; | 20 let panelWindow = null; |
21 | 21 |
22 chrome.runtime.sendMessage( | 22 chrome.runtime.sendMessage( |
23 { | 23 { |
24 type: "prefs.get", | 24 type: "prefs.get", |
25 key: "show_devtools_panel" | 25 key: "show_devtools_panel" |
26 }, | 26 }, |
27 enabled => | 27 enabled => |
28 { | 28 { |
29 if (enabled) | 29 if (enabled && "panels" in chrome.devtools) |
Sebastian Noack
2017/09/08 20:29:06
There should be a comment mentioning to the effect
Manish Jethani
2017/09/08 21:19:54
Done.
| |
30 { | 30 { |
31 chrome.devtools.panels.create( | 31 chrome.devtools.panels.create( |
32 "Adblock Plus", | 32 "Adblock Plus", |
33 "icons/detailed/abp-48.png", | 33 "icons/detailed/abp-48.png", |
34 "devtools-panel.html", | 34 "devtools-panel.html", |
35 panel => | 35 panel => |
36 { | 36 { |
37 panel.onShown.addListener(window => | 37 panel.onShown.addListener(window => |
38 { | 38 { |
39 panelWindow = window; | 39 panelWindow = window; |
(...skipping 10 matching lines...) Expand all Loading... | |
50 { | 50 { |
51 if (panelWindow) | 51 if (panelWindow) |
52 panelWindow.postMessage({type: eventName, queryString}, "*"); | 52 panelWindow.postMessage({type: eventName, queryString}, "*"); |
53 }); | 53 }); |
54 } | 54 } |
55 } | 55 } |
56 ); | 56 ); |
57 } | 57 } |
58 } | 58 } |
59 ); | 59 ); |
OLD | NEW |