Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Webpage to PDF Pro",
"version": "2.0.1",
"description": "Convert webpages to PDF with full-page capture, hyperlink preservation, and dark mode support. No refresh, perfect quality.",
"permissions": [
"activeTab",
"downloads",
"storage",
"scripting",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"web_accessible_resources": [
{
"resources": [
"styles\/print.css",
"styles\/darkmode.css",
"lib\/pdf-generator.js"
],
"matches": [
"<all_urls>"
]
}
],
"options_page": "options.html",
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+P",
"mac": "Command+Shift+P"
},
"description": "Convert current page to PDF"
}
}
}