PDF Editor: Fill, Edit and Sign PDF files

PDF Editor: Fill, Edit and Sign PDF files

Edit, e-sign and fill PDFs directly from search engine results and webpages with the PDFfiller

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "PDF Editor: Fill, Edit and Sign PDF files",
  "version": "1.0.0",
  "author": "PDFfiller (support@pdffiller.com)",
  "description": "Edit, e-sign and fill PDFs directly from search engine results and webpages with the PDFfiller",
  "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",
    "storage"
  ],
  "incognito": "split",
  "web_accessible_resources": [
    "content/web/viewer.html",
    "http:/*",
    "https:/*",
    "ftp:/*",
    "file:/*",
    "chrome-extension:/*",
    "blob:*",
    "data:*",
    "filesystem:/*",
    "drive:*",
    "img/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}