Automatic imperial to metric convertion BETA

Automatically convert imperial units to metric units on all websites

Was ist Automatic imperial to metric convertion BETA?

Automatic imperial to metric convertion BETA ist eine Chrome-Erweiterung, die von esprimo entwickelt wurde, und ihr Hauptmerkmal ist "Automatically convert imperial units to metric units on all websites".

Erweiterungsscreenshots

screenshot
screenshot

Automatic imperial to metric convertion BETA-Erweiterungs-CRX-Datei herunterladen

Laden Sie Automatic imperial to metric convertion BETA-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Automatically convert imperial units to metric units on all websites. Example of how a conversion would look:
"It's 12 miles to the library"
would be converted to:
"It's 12 miles (19.31km) to the library"

No tracking. Plugin in beta, code at:
https://github.com/esprimo/imperial-to-metric-chrome-extension                    

Grundlegende Informationen zur Erweiterung

Name Automatic imperial to metric convertion BETA Automatic imperial to metric convertion BETA
ID ggidgjeiboeedjjabheimgdkolnpaoik
Offizielle URL https://chromewebstore.google.com/detail/automatic-imperial-to-met/ggidgjeiboeedjjabheimgdkolnpaoik
Beschreibung Automatically convert imperial units to metric units on all websites
Dateigröße 11.41 KB
Installationsanzahl 393
Aktuelle Version 0.2.1
Letztes Update 2015-12-29
Veröffentlichungsdatum 2015-12-29
Bewertung 2.94/5 Insgesamt 18 Bewertungen
Entwickler esprimo
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Automatic imperial to metric convertion BETA",
    "version": "0.2.1",
    "description": "Automatically convert imperial units to metric units on all websites",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}