Inspect and view changes in JPG / Image to PDF Converter 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": 2,
"name": "Image to PDF Converter",
"version": "1.0",
"description": "Adds an option to convert images to PDF from the context menu.",
"permissions": [
"contextMenus",
"downloads",
"activeTab",
"tabs",
"storage",
"<all_urls>"
],
"browser_action": {
"default_popup": "popup.html",
"default_title": "Convert Image to PDF",
"default_icon": {
"16": "icons/icon16.png",
"24": "icons/icon24.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"24": "icons/icon24.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"browser_specific_settings": {
"gecko": {
"id": "{564c81e9-cdbc-4501-a921-3f262cfd692a}"
}
}
}