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_extensionName__",
"version": "1.5",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"permissions": [
"activeTab",
"storage"
],
"action": {
"default_popup": "popup.html",
"default_title": "__MSG_popupTitle__"
},
"background": {
"service_worker": "background.js"
},
"commands": {
"cycle-preset": {
"suggested_key": {
"default": "Alt+Shift+L"
},
"description": "Cycle through language presets"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/google.com\/*",
"*:\/\/www.google.com\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}