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 |
| 官方網址 | 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
} | |