Bookmark PDF pages for easy access
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": "PDF Bookmarker",
"description": "Bookmark PDF pages for easy access",
"version": "2.0.1",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"tabs"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/images/PDF16.png",
"32": "/images/PDF32.png",
"48": "/images/PDF48.png",
"128": "/images/PDF128.png"
}
},
"icons": {
"16": "/images/PDF16.png",
"32": "/images/PDF32.png",
"48": "/images/PDF48.png",
"128": "/images/PDF128.png"
}
}