PDFfiller: Edit, Fill, Sign any PDF document

PDFfiller: Edit, Fill, Sign any PDF document

The PDFfiller Add-on allows you to convert any webpage to a PDF with a single click and instantly edit it online. Easily transform PDFs from search results into fillable PDF forms and send them to be signed and completed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PDF Editor for Chrome:Edit, Fill, Sign, Print",
  "version": "0.4.7",
  "author": "PDFfiller ([email protected])",
  "description": "Edit, e-sign, print or fax PDFs directly from search engine results and webpages with the PDFfiller extension.",
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "img/logo16.png",
      "48": "img/logo48.png",
      "128": "img/logo128.png"
    }
  },
  "background": {
    "page": "pdfHandler.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "css": [
        "contentstyle.css",
        "css/style.css"
      ],
      "js": [
        "contentscript.js",
        "libs/jquery.min.js",
        "libs/base64.js",
        "libs/moment.js",
        "js/config.js",
        "js/browser.js",
        "js/inject.js",
        "js/background.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "file_browser_handlers": [
    {
      "id": "open-as-pdf",
      "default_title": "Open with PDF Viewer",
      "file_filters": [
        "filesystem:*.pdf"
      ]
    }
  ],
  "storage": {
    "managed_schema": "preferences_schema.json"
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "options_page": "options/options.html",
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "webNavigation"
  ],
  "incognito": "spanning",
  "web_accessible_resources": [
    "content/web/viewer.html",
    "http:/*",
    "https:/*",
    "ftp:/*",
    "file:/*",
    "chrome-extension:/*",
    "blob:*",
    "data:*",
    "filesystem:/*",
    "drive:*",
    "img/*"
  ]
}