PDF Editor Extension - PDFzorro

PDF Editor Extension - PDFzorro

Open PDF files with Google Chrome™ and edit them with this PDFzorro Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'",
  "permissions": [
    "activeTab",
    "https://www.pdfzorro.com/*",
    "downloads",
    "file:///*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "name": "PDF Editor Extension - PDFzorro",
  "version": "1.0.0.4",
  "short_name": "Use Google Chrome™ as PDF Editor",
  "description": "Open PDF files with Google Chrome™ and edit them with this PDFzorro Extension",
  "icons": {
    "16": "logo16.png",
    "128": "logo.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  }
}