Unitify
Convert units to your preferred tongue, in-page.
Co to jest Unitify?
Unitify to rozszerzenie Chrome opracowane przez Steve Pike, a jego główną funkcją jest „Convert units to your preferred tongue, in-page.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Unitify
Pobierz pliki rozszerzeń Unitify w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Unitify translates units and measurements in webpages in-place, so that you don't have to think about converting them yourself. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | amhbhaikpableefmhhongikpbefdcgmf |
| Oficjalny URL | https://chromewebstore.google.com/detail/unitify/amhbhaikpableefmhhongikpbefdcgmf |
| Opis | Convert units to your preferred tongue, in-page. |
| Rozmiar pliku | 63.65 KB |
| Liczba instalacji | 38 |
| Aktualna Wersja | 1.0.1 |
| Ostatnia Aktualizacja | 2013-03-26 |
| Data Publikacji | 2013-03-26 |
| Ocena | 5.00/5 Łącznie 2 Oceny |
| Deweloper | Steve Pike |
| Typ Płatności | free |
| Strona Rozszerzenia | http://github.com/stringfellow/unitify |
| Adres URL Strony Pomocy | http://github.com/stringfellow/unitify/issues |
| Obsługiwane Języki | 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"
]
} | |