Inspect and view changes in Learn languages with Netflix & YouTube 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": "__MSG_application_title__",
"version": "3.4.8",
"description": "__MSG_application_description__",
"default_locale": "en",
"manifest_version": 3,
"action": {
"default_popup": "./popup.html",
"default_title": "__MSG_application_title__",
"default_icon": "./assets/icons/icon.png"
},
"background": {
"service_worker": "./background.dist.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_end",
"js": [
"./content.dist.js"
],
"css": [
"./tailwind.dist.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"youtubeScript.js",
"netflixScript.js",
"courseraScript.js",
"assets/images/Banner.png",
"assets/images/barcode.png"
],
"matches": [
"https://*/*"
]
}
],
"options_page": "./options.html",
"icons": {
"16": "./assets/icons/icon16.png",
"48": "./assets/icons/icon48.png",
"128": "./assets/icons/icon128.png"
},
"host_permissions": [
"https://easy4learn.com/",
"https://elang.app/",
"https://elang-app-dev-zehqx.ondigitalocean.app/",
"<all_urls>"
],
"permissions": [
"tabs",
"notifications",
"storage",
"alarms"
],
"options_ui": {
"page": "./options.html",
"open_in_tab": true
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}