Inspect and view changes in Fill: Edit, Sign, Send, Store and Print PDF's 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",
"name": "Fill: Edit, Sign, Send, Store and Print PDF's",
"version": "1.0.11",
"description": "Fill makes it simple to complete PDF forms. Sign documents, or send a form to someone to sign. Edit, print or download your forms!",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"incognito": "split",
"permissions": [
"activeTab",
"webNavigation",
"identity",
"identity.email",
"storage",
"tabs",
"https://mail.google.com/ ",
"https://mail-attachment.googleusercontent.com/"
],
"browser_action": {
"default_popup": "defaultpopup/defaultpopup.html",
"default_icon": {
"16": "images/favicon-16x16-grey.png",
"32": "images/favicon-32x32-grey.png",
"48": "images/favicon-48x48-grey.png",
"128": "images/favicon-128x128-grey.png"
}
},
"icons": {
"16": "images/favicon-16x16.png",
"32": "images/favicon-32x32.png",
"48": "images/favicon-48x48.png",
"128": "images/favicon-128x128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"include_globs": [
"*.pdf",
"*.PDF"
],
"exclude_globs": [
"fill.io"
],
"js": [
"contentscripts/follow.js"
]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval' https://apis.google.com; object-src 'self'",
"externally_connectable": {
"matches": [
"https://*.fill.io/*",
"https://fill.io/*",
"http://localhost:5500/*"
]
},
"manifest_version": 2
}