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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/benchmark/manifest.json

Issue 10981008: Update page benchmarking extension to manifest v2 and event page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: license Created 8 years, 2 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "name": "Page Benchmarker", 2 "name": "Page Benchmarker",
3 "version": "1.3.3.0", 3 "version": "1.3.4.0",
4 "manifest_version": 2,
5 "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self' ",
4 "description": "Chromium Page Benchmarker.", 6 "description": "Chromium Page Benchmarker.",
5 "background": { 7 "background": {
6 "page": "background.html" 8 "page": "background.html",
9 "persistent": false
7 }, 10 },
8 "browser_action": { 11 "browser_action": {
9 "default_title": "Benchmark page load time", 12 "default_title": "Benchmark page load time",
10 "default_icon": "stopwatch.jpg" 13 "default_icon": "stopwatch.jpg"
11 }, 14 },
12 "options_page": "options.html", 15 "options_page": "options.html",
13 "permissions": [ 16 "permissions": [
14 "tabs", "https://*/*", "http://*/*" 17 "tabs", "https://*/*", "http://*/*"
15 ] 18 ]
16 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698