Phonetify - Phonetic Translator
Translate webpages using phonetic alphabets!
What is Phonetify - Phonetic Translator?
Phonetify - Phonetic Translator is a Chrome extension developed by Tim Brown, and its main feature is "Translate webpages using phonetic alphabets!".
Extension Screenshots
Download Phonetify - Phonetic Translator Extension CRX File
Download Phonetify - Phonetic 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
Phonetify translates webpages phonetically. Phonetify can translate: From: English, Japanese, Sinhalese, Esperanto To: Soundscript, IPA, Deseret, Shavian, ARPABET, X-SAMPA
Extension Basic Information
Name | Phonetify - Phonetic Translator |
ID | ginngbneckjdbhnkgblaccihjheaajbp |
Official URL | https://chromewebstore.google.com/detail/phonetify-phonetic-transl/ginngbneckjdbhnkgblaccihjheaajbp |
Description | Translate webpages using phonetic alphabets! |
File Size | 1.55 MB |
Installation Count | 583 |
Current Version | 1.0.5 |
Last Updated | 2022-10-10 |
Publish Date | 2020-01-28 |
Rating | 4.70/5 Total 10 Ratings |
Developer | Tim Brown |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |