Inspect and view changes in PDFfiller: Edit, Fill, Sign any PDF document source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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 (support@pdffiller.com)",
"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/*"
]
}