Inspect and view changes in Lexi source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Lexi",
"version": "1.0",
"manifest_version": 3,
"description": "Translate words in English and get sentence suggestions",
"icons": {
"16": "src/images/icon-16.png",
"32": "src/images/icon-32.png",
"48": "src/images/icon-48.png",
"128": "src/images/icon-128.png"
},
"action": {
"default_icon": {
"16": "src/images/icon-16.png",
"32": "src/images/icon-32.png",
"48": "src/images/icon-48.png",
"128": "src/images/icon-128.png"
},
"default_popup": "src/popup/popup.html"
},
"background": {
"service_worker": "src/scripts/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/scripts/content.js"
]
}
],
"permissions": [
"contextMenus",
"activeTab",
"scripting",
"identity",
"management",
"storage"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}