Inspect and view changes in Language Reactor 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": 3,
"name": "Language Reactor",
"short_name": "Lang Reactor",
"version": "5.1.1",
"description": "__MSG_appDesc__",
"default_locale": "en",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_title": "Language Reactor"
},
"content_scripts": [
{
"matches": [
"https://*.netflix.com/*"
],
"js": [
"content_netflix.js"
],
"css": [],
"run_at": "document_start"
},
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"content_youtube.js"
],
"css": [],
"run_at": "document_start"
},
{
"matches": [
"*://*.amazon.com.br/*",
"*://*.amazon.ca/*",
"*://*.amazon.com.mx/*",
"*://*.amazon.com/*",
"*://*.amazon.cn/*",
"*://*.amazon.in/*",
"*://*.amazon.co.jp/*",
"*://*.amazon.sg/*",
"*://*.amazon.ae/*",
"*://*.amazon.sa/*",
"*://*.amazon.fr/*",
"*://*.amazon.de/*",
"*://*.amazon.it/*",
"*://*.amazon.nl/*",
"*://*.amazon.pl/*",
"*://*.amazon.es/*",
"*://*.amazon.se/*",
"*://*.amazon.com.tr/*",
"*://*.amazon.co.uk/*",
"*://*.amazon.com.au/*"
],
"js": [
"content_amazon.js"
],
"css": [],
"run_at": "document_start"
},
{
"matches": [
"https://*.languagereactor.com/*"
],
"js": [
"content_dioco.js"
],
"css": [],
"run_at": "document_start"
}
],
"background": {
"service_worker": "background.min.js"
},
"web_accessible_resources": [
{
"resources": [
"images/*.png"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"pageScript_dioco.min.js",
"pageScript_lly.min.js",
"pageScript_lln.min.js",
"pageScript_lla.min.js"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"ui_strings/*.json"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"storage",
"contextMenus",
"activeTab",
"scripting"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; img-src 'self' https://www.gstatic.com/ https://cdn.firebase.com; connect-src 'self' https://*.firebaseio.com https://api.dioco.io https://www.youtube.com https://www.googleapis.com https://securetoken.googleapis.com https://us-central1-nlle-b0128.cloudfunctions.net https://apis.google.com https://identitytoolkit.googleapis.com https://i.ytimg.com"
},
"host_permissions": [
"https://i.ytimg.com/*"
],
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiczGksjvcUmUv4EsSHNmaJt4AiLifPbi7zCS5PKKnBj4FdDUHOaR2j4PBJynmobjYWOLMSt+iPyNO2w1Zvvc1kIL+aYa4jQAIbWz19TUK4z2wExsIEKXlWLka3G3AVPHD5nTlDA7dLr2wS3d2ptFaz+F1LMKj1f7QuQwpyRAuX49KdcbxFVnmuE9eRarW+cWGIzVLckhuxUUAlVSjy8L7iJ8olsjub/TqEhIcHcDlCHoKwAhp6EW/bI9RcWPORRxzTSydTAng5vYpy34+CsZg6PtUrTnOapB1e6ZEugYMbIPARQOp2DlOsKAKsui/oI7Bql4eK2CQ3K5twb5qf0WwwIDAQAB"
}