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_appDesc__",
"version": "0.0.2",
"permissions": [
"activeTab",
"storage"
],
"commands": {
"lock-tab": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
},
"description": "Lock the current tab"
}
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/unlocked-16.png",
"32": "icons\/unlocked-32.png",
"48": "icons\/unlocked-48.png",
"128": "icons\/unlocked-128.png"
},
"default_title": "Default Popup Title"
},
"default_locale": "en",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-scripts\/content.js"
]
}
]
}