Sign PDF and Word documents from the web by clicking "Open in signNow" from any document in your browser.
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": "http://clients2.google.com/service/update2/crx",
"name": "signNow - Sign and Fill PDF & Word Documents",
"version": "3.6",
"manifest_version": 2,
"description": "Sign PDF and Word documents from the web by clicking \"Open in signNow\" from any document in your browser.",
"permissions": [
"<all_urls>",
"contextMenus",
"storage",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"background": {
"page": "pdfHandler.html"
},
"browser_action": {
"default_title": "signNow",
"default_popup": "pageAction/popup.html"
},
"content_scripts": [
{
"matches": [
"*://mail.google.com/mail/*"
],
"js": [
"lib/jquery.min.js",
"js/gmail.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://*.signnow.com/*",
"*://signnow.com/*"
],
"js": [
"lib/jquery.min.js",
"js/signnow.js"
],
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"incognito": "split",
"storage": {
"managed_schema": "preferences_schema.json"
},
"web_accessible_resources": [
"content/web/viewer.html",
"http:/*",
"https:/*",
"ftp:/*",
"file:/*",
"chrome-extension:/*",
"blob:*",
"data:*",
"filesystem:/*",
"drive:*"
]
}