Inspect and view changes in Lingualeo Language Translator 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Lingualeo Language Translator",
"description": "Translate words & phrases from websites quickly. Add to your personal dictionary on Lingualeo.com and learn foreign languges easily!",
"version": "3.1.1",
"default_locale": "en",
"options_page": "pages/settings/settings.html",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"readability/readability.js",
"googleDocsUtil/googleDocsUtil.js",
"guessLanguage/guessLanguage.js",
"content.js"
],
"css": [
"content.css"
],
"exclude_matches": [
"https://lingualeo.com/*",
"https://lingualeo-beta.com/*",
"https://app.slack.com/*",
"https://*.atlassian.net/*"
]
}
],
"background": {
"scripts": [
"background.js",
"storage.js",
"requests.js"
]
},
"browser_action": {
"default_icon": "img/logo-paw-grey.png",
"default_popup": "popup/popup.html",
"default_title": "Lookup a definition!"
},
"icons": {
"16": "img/logo-paw16.png",
"48": "img/logo-paw48.png"
},
"web_accessible_resources": [
"img/*",
"content.css"
],
"permissions": [
"storage",
"tabs",
"cookies",
"<all_urls>",
"notifications",
"contextMenus"
]
}