Automatic imperial to metric convertion BETA

Automatically convert imperial units to metric units on all websites

Hvad er Automatic imperial to metric convertion BETA?

Automatic imperial to metric convertion BETA er en Chrome-udvidelse udviklet af esprimo, og dens hovedfunktion er "Automatically convert imperial units to metric units on all websites".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Automatic imperial to metric convertion BETA-udvidelses-CRX-fil

Download Automatic imperial to metric convertion BETA-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Automatic imperial to metric convertion BETA Automatic imperial to metric convertion BETA
ID ggidgjeiboeedjjabheimgdkolnpaoik
Officiel URL https://chromewebstore.google.com/detail/automatic-imperial-to-met/ggidgjeiboeedjjabheimgdkolnpaoik
Beskrivelse Automatically convert imperial units to metric units on all websites
Filstørrelse 11.41 KB
Antal Installationer 393
Nuværende Version 0.2.1
Senest Opdateret 2015-12-29
Udgivelsesdato 2015-12-29
Bedømmelse 2.94/5 Samlet 18 Bedømmelser
Udvikler esprimo
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}