OLD | NEW |
1 { | 1 { |
2 "name": "Extension Bundle 2", | 2 "name": "extension.2", |
3 "version": "1", | 3 "version": "1", |
4 "manifest_version": 2, | 4 "manifest_version": 2, |
5 "permissions": ["management", "http://google.com" ], | 5 "permissions": ["management", "http://google.com" ], |
6 "content_script": [{ | 6 "content_script": [{ |
7 "matches": [ "http://www.example.com/*" ], | 7 "matches": [ "http://www.example.com/*" ], |
8 "js": [ "content_script.js" ], | 8 "js": [ "content_script.js" ], |
9 "run_at": "document_start" | 9 "run_at": "document_start" |
10 }] | 10 }] |
11 } | 11 } |
OLD | NEW |