- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / api / devtools / audits / broken-links / manifest.json
1 {
2   "name": "Broken Links",
3   "version": "1.1",
4   "description": "Extends the Developer Tools, adding an audit category that finds broken links on the inspected page.",
5   "background": {
6     "scripts": ["background.js"]
7   },
8   "devtools_page": "devtools.html",
9   "permissions":  [
10     "experimental",
11     "tabs",
12     "http://*/*",
13     "https://*/*"
14   ],
15   "manifest_version": 2
16 }