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": "__MSG_appName__",
"description": "__MSG_shortDesc__",
"version": "1.0.1",
"action": {
"default_popup": "popup.html",
"default_title": "JPG to PDF Converter"
},
"icons": {
"16": "img\/icon-16.png",
"48": "img\/icon-48.png",
"64": "img\/icon-64.png",
"96": "img\/icon-96.png",
"128": "img\/icon-128.png"
},
"permissions": [
"contextMenus",
"downloads",
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"default_locale": "en",
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"fab_content.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"icons\/*",
"*.png",
"lib\/amplitude.js"
],
"matches": [
"<all_urls>"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}