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

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

Issue 2209113002: Change wildcard source expression matching to conform latest spec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjust CSP of feedback extension Created 4 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
« no previous file with comments | « chrome/browser/pdf/pdf_extension_test.cc ('k') | chrome/browser/resources/pdf/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 // chrome-extension://gfdkimpbcpahaombhbimeihdjnejgicl/ 2 // chrome-extension://gfdkimpbcpahaombhbimeihdjnejgicl/
3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDMZElzFX2J1g1nRQ/8S3rg/1CjFyDltW OxQg+9M8aVgNVxbutEWFQz+oQzIP9BB67mJifULgiv12ToFKsae4NpEUR8sPZjiKDIHumc6pUdixOm8S J5Rs16SMR6+VYxFUjlVW+5CA3IILptmNBxgpfyqoK0qRpBDIhGk1KDEZ4zqQIDAQAB", 3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDMZElzFX2J1g1nRQ/8S3rg/1CjFyDltW OxQg+9M8aVgNVxbutEWFQz+oQzIP9BB67mJifULgiv12ToFKsae4NpEUR8sPZjiKDIHumc6pUdixOm8S J5Rs16SMR6+VYxFUjlVW+5CA3IILptmNBxgpfyqoK0qRpBDIhGk1KDEZ4zqQIDAQAB",
4 "name": "Feedback", 4 "name": "Feedback",
5 "version": "1.0", 5 "version": "1.0",
6 "manifest_version": 2, 6 "manifest_version": 2,
7 "incognito" : "split", 7 "incognito" : "split",
8 "description": "User feedback extension", 8 "description": "User feedback extension",
9 "icons": { 9 "icons": {
10 "32": "images/icon32.png", 10 "32": "images/icon32.png",
11 "64": "images/icon64.png" 11 "64": "images/icon64.png"
12 }, 12 },
13 "permissions": [ 13 "permissions": [
14 "feedbackPrivate", 14 "feedbackPrivate",
15 "chrome://resources/" 15 "chrome://resources/"
16 ], 16 ],
17 "app": { 17 "app": {
18 "background": { 18 "background": {
19 "scripts": ["js/event_handler.js"] 19 "scripts": ["js/event_handler.js"]
20 }, 20 },
21 "content_security_policy": "default-src 'none'; script-src 'self' blob: file system: chrome://resources; style-src 'unsafe-inline' blob: filesystem: data: *; img-src * blob: filesystem: data:; media-src 'self' blob: filesystem:" 21 "content_security_policy": "default-src 'none'; script-src 'self' blob: file system: chrome://resources; style-src 'unsafe-inline' blob: chrome: file: filesy stem: data: *; img-src * blob: file: filesystem: data:; media-src 'self' blob: f ilesystem:"
22 }, 22 },
23 "display_in_launcher": false, 23 "display_in_launcher": false,
24 "display_in_new_tab_page": false 24 "display_in_new_tab_page": false
25 } 25 }
OLDNEW
« no previous file with comments | « chrome/browser/pdf/pdf_extension_test.cc ('k') | chrome/browser/resources/pdf/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698