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

Side by Side Diff: chrome/common/extensions/docs/examples/api/messaging/timer/manifest.json

Issue 7633017: Adding content_security_policy to sample extensions when relevant. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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": "Message Timer", 2 "name": "Message Timer",
3 "version": "1.0", 3 "version": "1.0",
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 "popup": "popup.html" 15 "popup": "popup.html"
16 } 16 },
17 "content_security_policy": "default-src 'self'"
17 } 18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698