Inspect and view changes in Momoko Danmaku 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",
"name": "Momoko Danmaku",
"short_name": "MMK DM",
"description": "Momoko Danmaku - 为所有视频网站提供弹幕服务",
"version": "1.1.0",
"manifest_version": 3,
"action": {
"default_icon": {
"128": "icon128.png"
}
},
"icons": {
"128": "icon128_active.png"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"content.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "service-worker.js"
},
"offline_enabled": false,
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"inject.js"
]
}
],
"permissions": [
"storage"
]
}