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_extension_full_name__",
"description": "__MSG_extension_description__",
"version": "1.1.1",
"short_name": "__MSG_extension_name__",
"icons": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/48.png",
"64": "icon\/64.png",
"128": "icon\/128.png",
"512": "icon\/512.png"
},
"default_locale": "en",
"permissions": [
"storage",
"tabs",
"contextMenus",
"webRequest",
"declarativeNetRequest",
"commands"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "popup.html",
"default_title": "LightPDF Translator"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "lightpdf_ruleset",
"enabled": true,
"path": "rules\/request_modifier_rule.json"
}
]
},
"commands": {
"translate-selection-shortcut": {
"suggested_key": {
"default": "Alt+T"
},
"description": "Translate Selection"
},
"translate-page-shortcut": {
"suggested_key": {
"default": "Alt+A"
},
"description": "Translate Page"
}
},
"background": {
"service_worker": "background.js"
},
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"css": [
"content-scripts\/content.css"
],
"js": [
"content-scripts\/content.js"
]
}
]
}