- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / extensions / fx / manifest.json
1 {
2   "name": "Chrome Sounds",
3   "version": "1.2",
4   "description": "Enjoy a more magical and immersive experience when browsing the web using the power of sound.",
5   "background": {
6     "scripts": ["bg.js"]
7   },
8   "options_page": "options.html",
9   "icons": { "128": "icon.png" },
10   "permissions": [
11     "tabs",
12     "bookmarks",
13     "http://*/*",
14     "https://*/*"
15   ],
16   "content_scripts": [ {
17     "matches": ["http://*/*", "https://*/*"],
18     "js": ["content.js"],
19     "all_frames": true
20   }],
21   "manifest_version": 2
22 }