|
2 | 2 | "manifest_version": 2,
|
3 | 3 | "name": "Relay Developer Tools",
|
4 | 4 | "description": "Adds Relay debugging tools to the Chrome Developer Tools.",
|
5 |
| - "version": "0.9.15", |
6 |
| - "version_name": "0.9.15", |
| 5 | + "version": "0.9.16", |
| 6 | + "version_name": "0.9.16", |
7 | 7 | "update_url": "https://www.internalfb.com/intern/browser_extensions/chrome/update.xml",
|
8 |
| - |
9 | 8 | "minimum_chrome_version": "78",
|
10 |
| - |
11 | 9 | "icons": {
|
12 | 10 | "16": "icons/enabled16.png",
|
13 | 11 | "32": "icons/enabled32.png",
|
14 | 12 | "48": "icons/enabled48.png",
|
15 | 13 | "128": "icons/enabled128.png"
|
16 | 14 | },
|
17 |
| - |
18 | 15 | "browser_action": {
|
19 | 16 | "default_icon": {
|
20 | 17 | "16": "icons/disabled16.png",
|
21 | 18 | "32": "icons/disabled32.png",
|
22 | 19 | "48": "icons/disabled48.png",
|
23 | 20 | "128": "icons/disabled128.png"
|
24 | 21 | },
|
25 |
| - |
26 | 22 | "default_popup": "popups/disabled.html"
|
27 | 23 | },
|
28 |
| - |
29 | 24 | "devtools_page": "main.html",
|
30 |
| - |
31 | 25 | "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
|
32 | 26 | "web_accessible_resources": [
|
33 | 27 | "main.html",
|
34 | 28 | "panel.html",
|
35 | 29 | "build/backend.js",
|
36 | 30 | "build/renderer.js"
|
37 | 31 | ],
|
38 |
| - |
39 | 32 | "background": {
|
40 | 33 | "scripts": ["build/background.js"],
|
41 | 34 | "persistent": false
|
42 | 35 | },
|
43 |
| - |
44 | 36 | "permissions": ["file:///*", "http://*/*", "https://*/*", "webNavigation"],
|
45 |
| - |
46 | 37 | "content_scripts": [
|
47 | 38 | {
|
48 | 39 | "matches": ["<all_urls>"],
|
|
0 commit comments