Unitify
Convert units to your preferred tongue, in-page.
Что такое Unitify?
Unitify - это расширение Chrome, разработанное Steve Pike, и его основная функция - "Convert units to your preferred tongue, in-page.".
Снимки экрана расширения
Скачать файл CRX расширения Unitify
Скачайте файлы расширений Unitify в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Unitify translates units and measurements in webpages in-place, so that you don't have to think about converting them yourself.
Основная информация о расширении
Название | Unitify |
ID | amhbhaikpableefmhhongikpbefdcgmf |
Официальный URL | https://chromewebstore.google.com/detail/unitify/amhbhaikpableefmhhongikpbefdcgmf |
Описание | Convert units to your preferred tongue, in-page. |
Размер файла | 63.65 KB |
Количество установок | 38 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2013-03-26 |
Дата публикации | 2013-03-26 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Steve Pike |
Тип оплаты | free |
Официальный сайт расширения | http://github.com/stringfellow/unitify |
URL страницы помощи | http://github.com/stringfellow/unitify/issues |
Поддерживаемые языки | 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" ] } |