Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(550)

Side by Side Diff: chrome/common/extensions/docs/examples/api/devtools/audits/broken-links/manifest.json

Issue 9289057: Changing manifest to v2 extension samples (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Adding zip files after rebasing with master Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 "name": "Broken Links", 2 "name": "Broken Links",
3 "version": "1.0", 3 "version": "1.1",
4 "description": "Extends the Developer Tools, adding an audit category that fin ds broken links on the inspected page.", 4 "description": "Extends the Developer Tools, adding an audit category that fin ds broken links on the inspected page.",
5 "background": { 5 "background": {
6 "scripts": ["background.js"] 6 "scripts": ["background.js"]
7 }, 7 },
8 "devtools_page": "devtools.html", 8 "devtools_page": "devtools.html",
9 "permissions": [ 9 "permissions": [
10 "experimental", 10 "experimental",
11 "tabs", 11 "tabs",
12 "http://*/*", 12 "http://*/*",
13 "https://*/*" 13 "https://*/*"
14 ] 14 ],
15 "manifest_version": 2
15 } 16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698