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

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

Issue 2370223002: Add externalfile: to PDF extension's object-src. (Closed)
Patch Set: Created 4 years, 2 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 | no next file » | 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://mhjfbmdgcfjbbpaeojofohoefgiehjai 2 // chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai
3 "manifest_version": 2, 3 "manifest_version": 2,
4 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfn SjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye /3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB", 4 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfn SjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye /3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB",
5 "name": "<NAME>", 5 "name": "<NAME>",
6 "version": "1", 6 "version": "1",
7 "description": "", 7 "description": "",
8 "offline_enabled": true, 8 "offline_enabled": true,
9 "incognito": "split", 9 "incognito": "split",
10 "permissions": [ 10 "permissions": [
11 "<all_urls>", 11 "<all_urls>",
12 "resourcesPrivate" 12 "resourcesPrivate"
13 ], 13 ],
14 "mime_types": [ 14 "mime_types": [
15 "application/pdf" 15 "application/pdf"
16 ], 16 ],
17 "content_security_policy": "script-src 'self' blob: filesystem: chrome://resou rces; object-src * blob: file: filesystem: data:; plugin-types application/x-goo gle-chrome-pdf", 17 "content_security_policy": "script-src 'self' blob: filesystem: chrome://resou rces; object-src * blob: externalfile: file: filesystem: data:; plugin-types app lication/x-google-chrome-pdf",
18 "mime_types_handler": "index.html", 18 "mime_types_handler": "index.html",
19 "web_accessible_resources": [ 19 "web_accessible_resources": [
20 "*.js", 20 "*.js",
21 "*.html", 21 "*.html",
22 "*.css", 22 "*.css",
23 "*.png" 23 "*.png"
24 ] 24 ]
25 } 25 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698