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

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

Issue 268963002: Allow the PDF extension to be run in incognito mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
« 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": "Chrome PDF Viewer", 5 "name": "Chrome PDF Viewer",
6 "version": "1", 6 "version": "1",
7 "description": "Chrome PDF Viewer", 7 "description": "Chrome PDF Viewer",
8 "offline_enabled": true, 8 "offline_enabled": true,
9 "incognito": "split",
9 "permissions": [ 10 "permissions": [
10 "file://*/", 11 "file://*/",
11 "ftp://*/", 12 "ftp://*/",
12 "http://*/", 13 "http://*/",
13 "https://*/", 14 "https://*/",
14 "chrome://*/", 15 "chrome://*/",
15 "streamsPrivate" 16 "streamsPrivate"
16 ], 17 ],
17 "background": { 18 "background": {
18 "scripts": ["background.js"], 19 "scripts": ["background.js"],
19 "transient": true, 20 "transient": true,
20 "persistent": false 21 "persistent": false
21 }, 22 },
22 "mime_types": [ 23 "mime_types": [
23 "application/pdf" 24 "application/pdf"
24 ], 25 ],
25 "web_accessible_resources": [ 26 "web_accessible_resources": [
26 "index.html" 27 "index.html"
27 ] 28 ]
28 } 29 }
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