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

Side by Side Diff: chrome/common/extensions/docs/examples/api/speechInput/basic/manifest.json

Issue 8698003: Adding CSP to Speech Input API sample. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: License. Created 9 years 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": "Speech Recognizer", 2 "name": "Speech Recognizer",
3 "version": "1.0", 3 "version": "1.0",
4 "description": "Recognizes your speech and tells you the most likely result.", 4 "description": "Recognizes your speech and tells you the most likely result.",
5 5
6 "browser_action": { 6 "browser_action": {
7 "default_title": "Speech Recognizer", 7 "default_title": "Speech Recognizer",
8 "default_icon": "start.png" 8 "default_icon": "start.png"
9 }, 9 },
10 10
11 "background_page": "background.html", 11 "background_page": "background.html",
12 12
13 "permissions": [ 13 "permissions": [
14 "experimental" 14 "experimental"
15 ] 15 ],
16 "content_security_policy": "default-src 'self'"
16 } 17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698