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

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

Issue 96233002: Add a PDF component extension (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « chrome/browser/resources/pdf/background.js ('k') | chrome/browser/resources/pdf/pdf.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 // chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai
3 "manifest_version": 2,
4 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfn SjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye /3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB",
5 "name": "Chrome PDF Viewer",
6 "version": "1",
7 "description": "Chrome PDF Viewer",
8 "offline_enabled": true,
9 "permissions": [
10 "file://*/",
11 "http://*/",
12 "https://*/",
13 "streamsPrivate"
14 ],
15 "background": {
16 "scripts": ["background.js"],
17 "transient": true,
18 "persistent": false
19 },
20 "offline_enabled": true,
21 "mime_types": [
22 "application/pdf"
23 ],
24 "web_accessible_resources": [
25 "pdf.html"
26 ]
27 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/pdf/background.js ('k') | chrome/browser/resources/pdf/pdf.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698