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

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
OLDNEW
(Empty)
1 {
2 "manifest_version": 2,
tapted 2013/12/02 04:17:19 nit: maybe put the extension id in a comment as we
raymes 2013/12/04 04:54:49 Done.
3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfn SjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye /3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB",
4 "name": "Chrome PDF Viewer",
5 "version": "1",
6 "description": "Chrome PDF Viewer",
7 "offline_enabled": true,
8 "permissions": [
9 "file://*/",
10 "http://*/",
11 "https://*/",
12 "streamsPrivate"],
tapted 2013/12/02 04:17:19 nit: closing `],` on new line
raymes 2013/12/04 04:54:49 Done.
13 "background": {
14 "scripts": ["background.js"],
15 "transient": true,
16 "persistent": false
17 },
18 "offline_enabled": true,
19 "mime_types": [
20 "application/pdf"
21 ],
22 "web_accessible_resources": [
23 "pdf.html"
24 ]
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698