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

Side by Side Diff: chrome/common/extensions/docs/examples/api/messaging/timer/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": "Message Timer", 2 "name": "Message Timer",
3 "version": "1.0", 3 "version": "1.2",
4 "description": "Times how long it takes to send a message to a content script and back.", 4 "description": "Times how long it takes to send a message to a content script and back.",
5 "permissions": ["tabs"], 5 "permissions": ["tabs"],
6 "content_scripts": [ 6 "content_scripts": [
7 { 7 {
8 "matches": ["http://*/*"], 8 "matches": ["http://*/*"],
9 "js": ["page.js"] 9 "js": ["page.js"]
10 } 10 }
11 ], 11 ],
12 "browser_action": { 12 "browser_action": {
13 "default_title": "Time to current page", 13 "default_title": "Time to current page",
14 "default_icon": "clock.png", 14 "default_icon": "clock.png",
15 "default_popup": "popup.html" 15 "default_popup": "popup.html"
16 } 16 },
17 "manifest_version": 2
17 } 18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698