KingConverter

Converting anything you want and back instantly in your webpage!

Was ist KingConverter?

KingConverter ist eine Chrome-Erweiterung, die von ryanr1230 entwickelt wurde, und ihr Hauptmerkmal ist "Converting anything you want and back instantly in your webpage!".

Erweiterungsscreenshots

screenshot

KingConverter-Erweiterungs-CRX-Datei herunterladen

Laden Sie KingConverter-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

                        Non intrusive lightweight plugin that adds an option on right click -- only with selected text (Selecting the whole number is necessary) to convert that number from a unit to another unit, or currency to currency or anything else right on your web page just changing the text in front of you. The only requirement for the page is that you are selecting a number (Trailing characters on either side are usually okay though).

    No information is tracked, the plugin is customizable (add your own conversions, add your own currency conversions, remove currency conversions) 

    Feel like you have something to add? This extension is open-source and on github - https://github.com/ryanr1230/KingConverter. And if you have a useful addition that you want to make publicly available, I will probably accept merge requests. Even if not the code is open-source, and you can see for yourself that none of this is storing any information you don't want it to.                    

Grundlegende Informationen zur Erweiterung

Name KingConverter KingConverter
ID cjnejggdphnihnmfplaogldagfhmjdoo
Offizielle URL https://chromewebstore.google.com/detail/kingconverter/cjnejggdphnihnmfplaogldagfhmjdoo
Beschreibung Converting anything you want and back instantly in your webpage!
Dateigröße 52.18 KB
Installationsanzahl 34
Aktuelle Version 0.0.2
Letztes Update 2014-07-26
Veröffentlichungsdatum 2014-07-25
Bewertung 4.00/5 Insgesamt 3 Bewertungen
Entwickler ryanr1230
Zahlungsart free
Hilfeseite URL https://github.com/ryanr1230/KingConverter/blob/master/README.md
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "KingConverter",
    "short_name": "kgC",
    "description": "Converting anything you want and back instantly in your webpage!",
    "version": "0.0.2",
    "options_page": "option\/option.html",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "jquery-1.11.1.min.js",
            "extensionscripts\/convert.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.11.1.min.js",
                "contentscripts\/domloader.js"
            ]
        }
    ],
    "manifest_version": 2
}