forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
38 lines (38 loc) · 1.7 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"background": {
"persistent": false,
"scripts": [ "build/background.js" ]
},
"browser_action": {
"default_icon": {
"128": "icons/128-disabled.png",
"16": "icons/16-disabled.png",
"32": "icons/32-disabled.png",
"48": "icons/48-disabled.png"
},
"default_popup": "popups/disabled.html"
},
"content_scripts": [ {
"js": [ "build/injectGlobalHook.js" ],
"matches": [ "\u003Call_urls>" ],
"run_at": "document_start"
} ],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"description": "Adds React debugging tools to the Chrome Developer Tools.\n\nCreated from revision 3816ae7c3 on 11/27/2019.",
"devtools_page": "main.html",
"icons": {
"128": "icons/128-production.png",
"16": "icons/16-production.png",
"32": "icons/32-production.png",
"48": "icons/48-production.png"
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA39Lr82J1eer+RvXeQG6HYHb2A6xU/83bcIyOcu+Wu2vYO/jbBvlD3m/xqrU4xSXJ/uAC1XY/YtlRs2X2RE1XiYMMlnqw27QdI5tVcSnKedmTFNAsnSaQ/OZT5tzH3HntLDfrFof5BC5RmFuie+kQKGTh673JW0ZdKTUsW406Fckagl9WpPL+qp3Gah3Jw02zxfQX9yUd5gJHYvv8T31DO9+HsI8lPeEjanURY59rRUfg3JKy1aPfts6eISy9kpHC+LrRSHU2Zp5AuUkOh8qEg6DoHFwBNYX20bdd6ekj0OZiIz/9xj9ceNhAr85QYB0641Tzhs3Tg96k56VNwjdN2QIDAQAB",
"manifest_version": 2,
"minimum_chrome_version": "49",
"name": "React Developer Tools",
"permissions": [ "file:///*", "http://*/*", "https://*/*" ],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "4.2.1",
"version_name": "4.2.1 (11/27/2019)",
"web_accessible_resources": [ "main.html", "panel.html", "build/backend.js", "build/renderer.js" ]
}