This extension provides an interactive UI for displaying translated text on manga websites.
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": "MajiYabai Manga Translator",
"version": "0.7.1",
"description": "This extension provides an interactive UI for displaying translated text on manga websites.",
"icons": {
"128": "images/icon-128.png",
"256": "images/icon-256.png"
},
"permissions": [
"storage",
"activeTab",
"windows",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"128": "images/icon-128.png",
"256": "images/icon-256.png"
}
},
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"images/icon-128.png",
"images/icon-256.png",
"content.js",
"testPage.html",
"test.xml",
"control-panel/control-panel.html",
"control-panel/control-panel.css",
"control-panel/control-panel.js",
"calibration/calibration.css",
"calibration/calibration.html",
"calibration/calibration.js"
],
"matches": [
"<all_urls>"
]
}
]
}