OLD | NEW |
1 { | 1 { |
2 "name": "chrome.automation.sanityCheck", | 2 "name": "chrome.automation.sanityCheck", |
3 "version": "0.1", | 3 "version": "0.1", |
4 "manifest_version": 2, | 4 "manifest_version": 2, |
5 "description": "Tests for the Automation API.", | 5 "description": "Tests for the Automation API.", |
6 "content_scripts": [ | |
7 { | |
8 "matches": [ "<all_urls>" ], | |
9 "js": [ "content.js" ], | |
10 "run_at": "document_end" | |
11 } | |
12 ], | |
13 "permissions": ["tabs", "http://a.com/"], | 6 "permissions": ["tabs", "http://a.com/"], |
14 "automation": {"interact": true} | 7 "automation": {"interact": true} |
15 } | 8 } |
OLD | NEW |