Convert a web page to PDF
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"default_locale": "en",
"name": "__MSG_web2pdfExtnName__",
"description": "__MSG_web2pdfExtnDescription__",
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "skin/action_disabled_19x19.png",
"default_title": "__MSG_web2pdfBrowserActionToolTip__"
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
}
],
"permissions": [
"contextMenus",
"nativeMessaging",
"tabs",
"storage"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"icons": {
"16": "skin/logo_16x16.png",
"48": "skin/logo_48x48.png",
"128": "skin/logo_128x128.png"
},
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.0.0.7",
"manifest_version": 3
}