閲覧しているWebサイト、PDF等の翻訳が簡単に行えます。
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": "みらい翻訳",
"version": "1.0.8",
"minimum_chrome_version": "88",
"description": "閲覧しているWebサイト、PDF等の翻訳が簡単に行えます。",
"icons": {
"16": "images/icons/16_16.png",
"48": "images/icons/48_48.png",
"128": "images/icons/128_128.png"
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"action": {
"default_icon": "images/icons/48_48_bold.png",
"default_title": "みらい翻訳"
},
"content_scripts": [
{
"matches": [
"*://*/*",
"file:///*"
],
"js": [
"js/vendor.js",
"js/content_script.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"tabs",
"management",
"downloads",
"contextMenus"
],
"host_permissions": [
"https://*.miraitranslate.com/*"
],
"web_accessible_resources": [
{
"resources": [
"images/*",
"button.html",
"translator.html",
"js/background.js"
],
"matches": [
"*://*/*",
"file:///*"
],
"extension_ids": []
}
]
}