| OLD | NEW |
| 1 { | 1 { |
| 2 "format_version": 1, | 2 "format_version": 1, |
| 3 "id": "00123456789ABCDEF0123456789ABCDEF0123456", | 3 "id": "00123456789ABCDEF0123456789ABCDEF0123456", |
| 4 "version": "1.0.0.0", | 4 "version": "1.0.0.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 "toolstrip": "toolstrip.html", |
| 7 "content_scripts": [ | 8 "content_scripts": [ |
| 8 { | 9 { |
| 9 "matches": ["http://*.google.com/*", "https://*.google.com/*"], | 10 "matches": ["http://*.google.com/*", "https://*.google.com/*"], |
| 10 "js": ["script1.js"] | 11 "js": ["script1.js"] |
| 11 }, | 12 }, |
| 12 { | 13 { |
| 13 "matches": ["http://*.yahoo.com/*"], | 14 "matches": ["http://*.yahoo.com/*"], |
| 14 "js": ["script2.js"] | 15 "js": ["script2.js"] |
| 15 }, | 16 }, |
| 16 { | 17 { |
| 17 "matches": ["http://*.news.com/*"], | 18 "matches": ["http://*.news.com/*"], |
| 18 "js": ["js_files/script3.js"] | 19 "js": ["js_files/script3.js"] |
| 19 } | 20 } |
| 20 ] | 21 ] |
| 21 } | 22 } |
| OLD | NEW |