Phonetify - Phonetic Translator
Translate webpages using phonetic alphabets!
Cos'è Phonetify - Phonetic Translator?
Phonetify - Phonetic Translator è un'estensione di Chrome sviluppata da Tim Brown, e la sua funzione principale è "Translate webpages using phonetic alphabets!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Phonetify - Phonetic Translator
Scarica i file di estensione Phonetify - Phonetic Translator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Phonetify translates webpages phonetically. Phonetify can translate: From: English, Japanese, Sinhalese, Esperanto To: Soundscript, IPA, Deseret, Shavian, ARPABET, X-SAMPA
Informazioni di Base sull'Estensione
Nome | Phonetify - Phonetic Translator |
ID | ginngbneckjdbhnkgblaccihjheaajbp |
URL Ufficiale | https://chromewebstore.google.com/detail/phonetify-phonetic-transl/ginngbneckjdbhnkgblaccihjheaajbp |
Descrizione | Translate webpages using phonetic alphabets! |
Dimensione del File | 1.55 MB |
Conteggio Installazioni | 583 |
Versione Corrente | 1.0.5 |
Ultimo Aggiornamento | 2022-10-10 |
Data di Pubblicazione | 2020-01-28 |
Valutazione | 4.70/5 Totale 10 Valutazioni |
Sviluppatore | Tim Brown |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |