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"
        }
    ]
}