OLD | NEW |
1 { | 1 { |
2 "format_version": 1, | 2 "format_version": 1, |
3 "id": "com.google.myextension1", | 3 "id": "com.google.myextension1", |
4 "version": "1.0", | 4 "version": "1.0", |
5 "name": "My extension 1", | 5 "name": "My extension 1", |
6 "description": "The first extension that I made.", | 6 "description": "The first extension that I made.", |
7 "content_scripts": [ | 7 "user_scripts": [ |
8 "script1.user.js", | 8 { |
9 "script2.user.js" | 9 "matches": ["http://*.google.com/*", "https://*.google.com/*"], |
| 10 "files": ["script1.js"] |
| 11 }, |
| 12 { |
| 13 "matches": ["http://*.yahoo.com/*"], |
| 14 "files": ["script2.js"] |
| 15 } |
10 ] | 16 ] |
11 } | 17 } |
OLD | NEW |