Unitify
Convert units to your preferred tongue, in-page.
Cos'è Unitify?
Unitify è un'estensione di Chrome sviluppata da Steve Pike, e la sua funzione principale è "Convert units to your preferred tongue, in-page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Unitify
Scarica i file di estensione Unitify 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
Unitify translates units and measurements in webpages in-place, so that you don't have to think about converting them yourself. Informazioni di Base sull'Estensione
| Nome | |
| ID | amhbhaikpableefmhhongikpbefdcgmf |
| URL Ufficiale | https://chromewebstore.google.com/detail/unitify/amhbhaikpableefmhhongikpbefdcgmf |
| Descrizione | Convert units to your preferred tongue, in-page. |
| Dimensione del File | 63.65 KB |
| Conteggio Installazioni | 38 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2013-03-26 |
| Data di Pubblicazione | 2013-03-26 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | Steve Pike |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://github.com/stringfellow/unitify |
| URL della Pagina di Aiuto | http://github.com/stringfellow/unitify/issues |
| Lingue Supportate | en-GB |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Unitify",
"description": "Convert units to your preferred tongue, in-page.",
"version": "1.0.1",
"options_page": "options.html",
"browser_action": {
"default_icon": "globe.png",
"default_popup": "options.html"
},
"icons": {
"128": "globe.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"jquery-1.9.1.min.js",
"underscore-min.js",
"unitify.js"
],
"run_at": "document_end"
}
],
"permissions": [
"storage"
]
} | |