Inspect and view changes in AiMu - Real time audio to subtitle 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_name__",
"version": "1.1.9",
"description": "__MSG_description__",
"default_locale": "en",
"homepage_url": "https://aimu.app/",
"manifest_version": 3,
"options_page": "options.html",
"host_permissions": [
"*://aimu.app/*",
"*://*.aimu-app.com/*"
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"activeTab",
"scripting",
"tabCapture"
],
"action": {
"default_popup": "popup.html",
"default_title": "__MSG_title__",
"default_icon": {
"16": "images/16.png",
"32": "images/32.png",
"48": "images/48.png",
"128": "images/128.png"
}
},
"icons": {
"16": "images/16.png",
"32": "images/32.png",
"48": "images/48.png",
"128": "images/128.png"
},
"content_scripts": [
{
"matches": [
"*://aimu.app/*",
"*://*.aimu-app.com/*"
],
"run_at": "document_start",
"js": [
"aimu.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}