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

Side by Side Diff: chrome/browser/resources/bookmark_manager/manifest.json

Issue 1176203008: Explicitly whitelist 'blob:' and 'filesystem:' for built-in extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/crosh_builtin/manifest.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQcByy+eN9jzazWF/DPn7NW47sW7lgmp k6eKc0BQM18q8hvEM3zNm2n7HkJv/R6fU+X5mtqkDuKvq5skF6qqUF4oEyaleWDFhd1xFwV7JV+/DU7b Z00w2+6gzqsabkerFpoP33ZRIw7OviJenP0c0uWqDWF8EGSyMhB3txqhOtiQIDAQAB", 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQcByy+eN9jzazWF/DPn7NW47sW7lgmp k6eKc0BQM18q8hvEM3zNm2n7HkJv/R6fU+X5mtqkDuKvq5skF6qqUF4oEyaleWDFhd1xFwV7JV+/DU7b Z00w2+6gzqsabkerFpoP33ZRIw7OviJenP0c0uWqDWF8EGSyMhB3txqhOtiQIDAQAB",
3 "name": "Bookmark Manager", 3 "name": "Bookmark Manager",
4 "version": "0.1", 4 "version": "0.1",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "description": "Bookmark Manager", 6 "description": "Bookmark Manager",
7 "icons": { 7 "icons": {
8 // The favicon is loaded directly from resources.pak. 8 // The favicon is loaded directly from resources.pak.
9 }, 9 },
10 "incognito" : "split", 10 "incognito" : "split",
11 "permissions": [ 11 "permissions": [
12 "bookmarks", 12 "bookmarks",
13 "bookmarkManagerPrivate", 13 "bookmarkManagerPrivate",
14 "metricsPrivate", 14 "metricsPrivate",
15 "systemPrivate", 15 "systemPrivate",
16 "tabs", 16 "tabs",
17 "chrome://favicon/", 17 "chrome://favicon/",
18 "chrome://resources/" 18 "chrome://resources/"
19 ], 19 ],
20 "chrome_url_overrides": { 20 "chrome_url_overrides": {
21 "bookmarks": "main.html" 21 "bookmarks": "main.html"
22 }, 22 },
23 "content_security_policy": 23 "content_security_policy":
24 "object-src 'none'; script-src chrome://resources 'self'" 24 "object-src 'none'; script-src chrome://resources 'self' blob: filesystem:"
25 } 25 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/crosh_builtin/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698