OLD | NEW |
1 { | 1 { |
2 "manifest_version": 2, | 2 "manifest_version": 2, |
3 | 3 |
4 "name": "One-click Kittens", | 4 "name": "Getting started example", |
5 "description": "This extension demonstrates a 'browser action' with kittens.", | 5 "description": "This extension shows a Google Image search result for the curr
ent page", |
6 "version": "1.0", | 6 "version": "1.0", |
7 | 7 |
8 "browser_action": { | 8 "browser_action": { |
9 "default_icon": "icon.png", | 9 "default_icon": "icon.png", |
10 "default_popup": "popup.html" | 10 "default_popup": "popup.html" |
11 }, | 11 }, |
12 "permissions": [ | 12 "permissions": [ |
13 "https://secure.flickr.com/" | 13 "activeTab", |
| 14 "https://ajax.googleapis.com/" |
14 ] | 15 ] |
15 } | 16 } |
OLD | NEW |