A world in metric

Convert measurements from the imperial system into the metric system.

Τι είναι το A world in metric;

Το A world in metric είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον celine.chole, και η κύρια λειτουργία του είναι "Convert measurements from the imperial system into the metric system.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης A world in metric

Λήψη αρχείων επέκτασης A world in metric σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Trying to follow a cooking recipe but not sure why they're asking you to use cups instead of a scale?  Or maybe following along with a news article but you're not quite sure to be impressed or not by that record-breaking 40lb chicken nugget?  These and many more are the daily tribulations you'll face as a user of the metric system in an imperial country.

Installing this extension will allow you to highlight a measure (e.g. 1 cup, 15lbs, 12 ounces) and have a small toast appear with the appropriate conversion into grams/millilitres.

Once installed you will need to activate the extension when you want to perform a translation by clicking on the extension's icon (the cooking pot).  You'll know it's worked as the icon will show the words ON.  From that point on anything, you highlight will appear in a small toast at the top right of your page.

To deactivate simply click the icon again and you'll be able to resume selecting blocks of text to send to your loved ones, along with an explanation of what a 24oz soda really means.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα A world in metric A world in metric
ID pdleompplbpjooccppmgapllobgodjed
Επίσημο URL https://chromewebstore.google.com/detail/a-world-in-metric/pdleompplbpjooccppmgapllobgodjed
Περιγραφή Convert measurements from the imperial system into the metric system.
Μέγεθος Αρχείου 178 KB
Αριθμός Εγκαταστάσεων 46
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2019-03-16
Ημερομηνία Δημοσίευσης 2019-03-12
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής celine.chole
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/CelineChole/chrome-extension-imperial-metric
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "A world in metric",
    "version": "1.1",
    "description": "Convert measurements from the imperial system into the metric system.",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "toastr.min.js",
                "content.js"
            ],
            "css": [
                "toastr.min.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon256.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}