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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/pdf/background.js ('k') | chrome/browser/resources/pdf/pdf.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/pdf/manifest.json
diff --git a/chrome/browser/resources/pdf/manifest.json b/chrome/browser/resources/pdf/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..07e577aca3a9b91624daffaaacf29f3d9016294a
--- /dev/null
+++ b/chrome/browser/resources/pdf/manifest.json
@@ -0,0 +1,27 @@
+{
+ // chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai
+ "manifest_version": 2,
+ "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfnSjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye/3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB",
+ "name": "Chrome PDF Viewer",
+ "version": "1",
+ "description": "Chrome PDF Viewer",
+ "offline_enabled": true,
+ "permissions": [
+ "file://*/",
+ "http://*/",
+ "https://*/",
+ "streamsPrivate"
+ ],
+ "background": {
+ "scripts": ["background.js"],
+ "transient": true,
+ "persistent": false
+ },
+ "offline_enabled": true,
+ "mime_types": [
+ "application/pdf"
+ ],
+ "web_accessible_resources": [
+ "pdf.html"
+ ]
+}
« 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