| OLD | NEW |
| 1 { | 1 { |
| 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCsaVmPYFjlYABY7y8sEVB5i3/stDIXU8
i3bBeQYeaXOg+Jr1vEhaSgKTy3zMY4m3+cnKI7Z/bMpYohS4pQTcwIXS1kEB6taCUUWgm2315zxSH+gU
FRyfzBDlS8LZ9tRirFGj8o0R2YQobHgSPyf04Phq4AeMmGSygEJkfGO+Wt8wIDAQAB", | 2 "id": "00123456789ABCDEF0123456789ABCDEF0123456", |
| 3 "signature":"kCUJQeO+FZ0hENaTT9bFW90HwiIppJEj/j88gOyXIL3z00ZOn/eck+M8O+HU7ad+U
7BG5GK7xnuIvqzjAYK4ihfEYbExnbx3R79GWUWpHegELbp0PvhU9a+xIwTh48kzpKNgunzZGY0oONGvV
eoNQXeTTO8z2i6RZfWD3/YdyBk=", | |
| 4 "version": "1.0.0.0", | 3 "version": "1.0.0.0", |
| 5 "name": "My extension 1", | 4 "name": "My extension 1", |
| 6 "description": "The first extension that I made.", | 5 "description": "The first extension that I made.", |
| 7 "toolstrips": [ | 6 "toolstrips": [ |
| 8 "toolstrip1.html", | 7 "toolstrip1.html", |
| 9 "toolstrip2.html" | 8 "toolstrip2.html" |
| 10 ], | 9 ], |
| 11 "permissions": ["http://*.google.com/*", "https://*.google.com/*"], | 10 "permissions": ["http://*.google.com/*", "https://*.google.com/*"], |
| 12 "content_scripts": [ | 11 "content_scripts": [ |
| 13 { | 12 { |
| 14 "matches": ["http://*.google.com/*", "https://*.google.com/*"], | 13 "matches": ["http://*.google.com/*", "https://*.google.com/*"], |
| 15 "js": ["script1.js", "script2.js"], | 14 "js": ["script1.js", "script2.js"], |
| 16 "css": ["style1.css", "style2.css", "style2.css"] | 15 "css": ["style1.css", "style2.css", "style2.css"] |
| 17 }, | 16 }, |
| 18 { | 17 { |
| 19 "matches": ["http://*.news.com/*"], | 18 "matches": ["http://*.news.com/*"], |
| 20 "js": ["js_files/script3.js"] | 19 "js": ["js_files/script3.js"] |
| 21 } | 20 } |
| 22 ] | 21 ] |
| 23 } | 22 } |
| OLD | NEW |