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",
"name": "Quick Language Detection ",
"version": "1.0",
"description": "Activate this extension and right-click on any selected text to instantly identify its language easily.",
"manifest_version": 3,
"permissions": [
"contextMenus",
"notifications"
],
"icons": {
"16": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"images\/*"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start"
}
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
]
}