|
2 | 2 | "manifest_version": 2, |
3 | 3 | "name": "Testing Playground", |
4 | 4 | "description": "Simple and complete DOM testing playground that encourage good testing practices.", |
5 | | - "version": "1.0.0", |
6 | | - "version_name": "1.0.0", |
7 | | - |
| 5 | + "version": "1.0.2", |
| 6 | + "version_name": "1.0.2", |
8 | 7 | "minimum_chrome_version": "49", |
9 | | - |
10 | 8 | "icons": { |
11 | 9 | "16": "icons/16-production.png", |
12 | 10 | "32": "icons/32-production.png", |
13 | 11 | "48": "icons/48-production.png", |
14 | 12 | "128": "icons/128-production.png" |
15 | 13 | }, |
16 | | - |
17 | 14 | "browser_action": { |
18 | 15 | "default_icon": { |
19 | 16 | "16": "icons/16-production.png", |
|
22 | 19 | "128": "icons/128-production.png" |
23 | 20 | } |
24 | 21 | }, |
25 | | - |
26 | | - "web_accessible_resources": ["window/testing-library.js"], |
27 | | - |
| 22 | + "web_accessible_resources": [ |
| 23 | + "window/testing-library.js" |
| 24 | + ], |
28 | 25 | "devtools_page": "devtools/main.html", |
29 | | - |
30 | 26 | "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-6UcmjVDygSSU8p+3s7E7Kz8EG/ARhPADPRUm9P90HLM='; object-src 'self'", |
31 | | - |
32 | 27 | "background": { |
33 | | - "scripts": ["background/background.js"], |
| 28 | + "scripts": [ |
| 29 | + "background/background.js" |
| 30 | + ], |
34 | 31 | "persistent": false |
35 | 32 | }, |
36 | | - |
37 | | - "permissions": ["<all_urls>", "activeTab", "clipboardWrite"], |
38 | | - |
| 33 | + "permissions": [ |
| 34 | + "clipboardWrite" |
| 35 | + ], |
39 | 36 | "content_scripts": [ |
40 | 37 | { |
41 | | - "matches": ["<all_urls>"], |
42 | | - "js": ["content-script/contentScript.js"], |
43 | | - "run_at": "document_start", |
44 | | - "all_frames": true |
| 38 | + "matches": [ |
| 39 | + "<all_urls>" |
| 40 | + ], |
| 41 | + "js": [ |
| 42 | + "content-script/contentScript.js" |
| 43 | + ], |
| 44 | + "run_at": "document_start" |
45 | 45 | } |
46 | 46 | ] |
47 | 47 | } |
0 commit comments