Coconut Translator
a slight inline translator
What is Coconut Translator?
Coconut Translator is a Chrome extension developed by Kilerd, and its main feature is "a slight inline translator".
Extension Screenshots
Download Coconut Translator Extension CRX File
Download Coconut Translator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
a very slight inline translator to translate English to Chinese. Extension Basic Information
| Name | |
| ID | cocecjoobghcgkojfkhlhcipeffdbbjd |
| Official URL | https://chrome.google.com/webstore/detail/coconut-translator/cocecjoobghcgkojfkhlhcipeffdbbjd |
| Description | a slight inline translator |
| File Size | 46.53 KB |
| Installation Count | 31 |
| Current Version | 0.0.2 |
| Last Updated | 2017-11-27 |
| Publish Date | 2017-11-27 |
| Rating | 5.00/5 Total 1 Ratings |
| Developer | Kilerd |
| [email protected] | |
| Payment Type | free |
| Supported Languages | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Coconut Translator",
"version": "0.0.2",
"description": "a slight inline translator",
"icons": {
"128": "icon-128.png"
},
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"background.bundle.js"
]
}
],
"background": {
"scripts": [
"exbackground.bundle.js"
]
},
"permissions": [
"tabs",
"*:\/\/*\/*",
"storage"
]
} | |