Fahrenheit 451

Converts Fahrenheit temperatures to celcius

Что такое Fahrenheit 451?

Fahrenheit 451 - это расширение Chrome, разработанное https://www.dkcy.com, и его основная функция - "Converts Fahrenheit temperatures to celcius".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Fahrenheit 451

Скачайте файлы расширений Fahrenheit 451 в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Converts US measures into metric. Currently converts:
Fahrenheit to Celcius (rounded to whole number)
Lbs and ozs to grams (rounded to whole number)
Quarts and pints to millilitres

Unfortunately, it can't handle cups because that's a volumetric measure and depends on the density of the thing being measured. I'm working on that...

Released under a Creative Commons CC BY-NC-SA licence. https://creativecommons.org/licenses/by-nc-sa/4.0/
Code is on GitHub https://github.com/yukinosaru/fahrenheit451                    

Основная информация о расширении

Название Fahrenheit 451 Fahrenheit 451
ID piodninhpjpcpgboajmlmkbgplkmcfgd
Официальный URL https://chromewebstore.google.com/detail/fahrenheit-451/piodninhpjpcpgboajmlmkbgplkmcfgd
Описание Converts Fahrenheit temperatures to celcius
Размер файла 222 KB
Количество установок 31
Текущая Версия 1.2
Последнее Обновление 2017-02-08
Дата публикации 2017-02-08
Рейтинг 2.50/5 Всего 2 оценок
Разработчик https://www.dkcy.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fahrenheit 451",
    "description": "Converts Fahrenheit temperatures to celcius",
    "version": "1.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Click to enable\/disable Fahrenheit451"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}