Inspect and view changes in LinguaLens: Multi-Language Dictionary 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
{
"manifest_version": 2,
"name": "LinguaLens: Multi-Language Dictionary",
"version": "1.0",
"description": "Instant dictionary lookup for multiple languages with pronunciation, examples, and more.",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"permissions": [
"<all_urls>",
"storage",
"contextMenus"
],
"browser_action": {
"default_icon": "icons/icon-48.png",
"default_title": "LinguaLens",
"default_popup": "popup/popup.html"
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{9bb2bd37-9547-4fe8-b406-cf54d00941f7}"
}
}
}