Inspect and view changes in learnin 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": "learnin",
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"https://*.learnin.com.cn/*"
],
"js": [
"content/index.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_icon": {
"16": "icon.png",
"32": "icon.png"
},
"default_popup": "popup/index.html"
},
"permissions": [
"activeTab",
"tabs",
"storage"
],
"host_permissions": [
"https://*.learnin.com.cn/*"
],
"background": {
"service_worker": "serviceWorker.js",
"type": "module"
},
"version": "0.4.0",
"description": "learnin is a browser extension that helps you study effectively.",
"web_accessible_resources": [
{
"resources": [
"assets/content/index-9650fb96.js",
"assets/log-4db09483.js",
"assets/page-27cd95cd.js"
],
"matches": [
"https://*.learnin.com.cn/*"
],
"use_dynamic_url": true
}
]
}