Phonetify - Phonetic Translator
Translate webpages using phonetic alphabets!
什么是Phonetify - Phonetic Translator?
Phonetify - Phonetic Translator是由Tim Brown开发的Chrome扩展程序,该扩展的主要功能是“Translate webpages using phonetic alphabets!”。
扩展截图
下载Phonetify - Phonetic Translator扩展crx文件
下载Phonetify - Phonetic Translator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Phonetify translates webpages phonetically.
Phonetify can translate:
From: English, Japanese, Sinhalese, Esperanto
To: Soundscript, IPA, Deseret, Shavian, ARPABET, X-SAMPA 扩展基本信息
| 名称 | |
| ID | ginngbneckjdbhnkgblaccihjheaajbp |
| 官方URL | https://chromewebstore.google.com/detail/phonetify-phonetic-transl/ginngbneckjdbhnkgblaccihjheaajbp |
| 简介 | Translate webpages using phonetic alphabets! |
| 文件大小 | 1.55 MB |
| 安装次数 | 583 |
| 当前版本 | 1.0.5 |
| 更新时间 | 2022-10-10 |
| 上架时间 | 2020-01-28 |
| 评分 | 4.70/5 共10次评分 |
| 开发者 | Tim Brown |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Phonetify - Phonetic Translator",
"description": "Translate webpages using phonetic alphabets!",
"version": "1.0.5",
"permissions": [
"storage",
"tabs",
"management"
],
"action": {
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": [
"json\/*.json"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
],
"css": [
"style.css"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"128": "icon128.png"
},
"manifest_version": 3
} | |