Inspect and view changes in PDF Editor source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "PDF Editor",
"description": "PDF Editor - edit, merge and combine PDF documents.",
"version": "1.0.3",
"action": {
"default_icon": {
"16": "icon/icon16.png",
"48": "icon/icon48.png",
"128": "icon/icon128.png"
},
"default_title": "Edit PDFs"
},
"externally_connectable": {
"matches": [
"*://*.work.ink/*",
"*://work.ink/*"
]
},
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"inject.js"
]
},
{
"matches": [
"*://*/*"
],
"js": [
"inject2.js"
],
"run_at": "document_start"
}
],
"author": "workink-management@proton.me",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}