Inspect and view changes in Lingopie - Language Learning With Netflix and Disney+ 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": "Lingopie - Language Learning With Netflix and Disney+",
"description": "Can you learn a language by watching TV shows and movies on Netflix and Disney+? Well, now you can!",
"version": "1.77.3",
"content_scripts": [
{
"matches": [
"https://*.netflix.com/*",
"https://*.disneyplus.com/*"
],
"js": [
"setup.js"
],
"css": [
"dist/assets/index-c68f8236.css"
]
},
{
"matches": [
"https://*.lingopie.com/*"
],
"js": [
"extensionLoaded.js"
],
"run_at": "document_start",
"world": "MAIN"
}
],
"action": {
"default_popup": "popup/index.html"
},
"background": {
"service_worker": "sw.js"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"dist/assets/index-0848d7dc.js"
],
"matches": [
"https://*.netflix.com/*",
"https://*.disneyplus.com/*"
]
},
{
"resources": [
"dist/images/*.png"
],
"matches": [
"https://*.netflix.com/*",
"https://*.disneyplus.com/*"
]
},
{
"resources": [
"facebookSDK.js"
],
"matches": [
"https://*.netflix.com/*",
"https://*.disneyplus.com/*"
]
}
],
"permissions": [
"storage",
"activeTab"
]
}