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": "Bulk PDF Downloader \u2013 Download All PDFs on a Webpage with One Click",
"version": "3.2",
"description": "Download all PDF files linked on a webpage with a single click.",
"permissions": [
"activeTab",
"tabs",
"downloads",
"storage",
"identity"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"128": "icon.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_idle",
"all_frames": true
}
],
"icons": {
"128": "icon.png"
},
"oauth2": {
"client_id": "107680779108-mjsl6feem43k4m2du3tpfg491l5cbgo7.apps.googleusercontent.com",
"scopes": [
"openid",
"email",
"profile"
]
}
}