Fahrenheit 451

Converts Fahrenheit temperatures to celcius

Qu'est-ce que Fahrenheit 451 ?

Fahrenheit 451 est une extension Chrome développée par https://www.dkcy.com, et sa fonction principale est "Converts Fahrenheit temperatures to celcius".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Fahrenheit 451

Téléchargez les fichiers d'extension Fahrenheit 451 au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Fahrenheit 451 Fahrenheit 451
ID piodninhpjpcpgboajmlmkbgplkmcfgd
URL Officiel https://chromewebstore.google.com/detail/fahrenheit-451/piodninhpjpcpgboajmlmkbgplkmcfgd
Description Converts Fahrenheit temperatures to celcius
Taille du Fichier 222 KB
Nombre d'Installations 31
Version Actuelle 1.2
Dernière Mise à Jour 2017-02-08
Date de Publication 2017-02-08
Évaluation 2.50/5 Total 2 Évaluations
Développeur https://www.dkcy.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}