Automatic Currency Converter

Automatically convert currencies using rates provided by the European Central Bank

Τι είναι το Automatic Currency Converter;

Το Automatic Currency Converter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rynoxx, και η κύρια λειτουργία του είναι "Automatically convert currencies using rates provided by the European Central Bank".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Automatic Currency Converter

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

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

                        New in the latest update:
* Improved detection of numbers that should be converted
* Fixes for latest required manifest version

An automatic currency converter is what the name suggests. It allows you to convert to and from all of the supported currencies! Online shopping has never been easier. The converter is always up to date with current rates from the European Central Bank, so you are assured and guaranteed of getting the latest rates! No matter what page you are using, the currency converter will attempt to provide you with whatever currency you want.

Key Features:
* Automatically detects the currency used on most pages
* Automatically converts currencies, i.e. prices, (from supported currencies) using said detection to a supported currency of your choice
* Automatically updates conversion when an AJAX request is completed, such as when AutoPatchWork loads a new page.
* Specify additional exchange rate to account for differences between your exchange rate and the official ECB exchange rate
* Right-click selected text/number and select 'Convert selected text' to get a conversion of the selected number.

Supported currencies:
USD, JPY, BGN, CZK, DKK, GBP, HUF, PLN, RON, SEK, CHF, ISK, NOK, HRK, RUB, TRY, AUD, BRL, CAD, CNY, HKD, IDR, ILS, INR, KRW, MXN, MYR, NZD, PHP, SGD, THB, ZAR, EUR                    

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

Όνομα Automatic Currency Converter Automatic Currency Converter
ID iifdmmlholnidpomgpbgejalncoiplhm
Επίσημο URL https://chromewebstore.google.com/detail/automatic-currency-conver/iifdmmlholnidpomgpbgejalncoiplhm
Περιγραφή Automatically convert currencies using rates provided by the European Central Bank
Μέγεθος Αρχείου 102 KB
Αριθμός Εγκαταστάσεων 1,085
Τρέχουσα Έκδοση 1.0.19
Τελευταία Ενημέρωση 2022-07-01
Ημερομηνία Δημοσίευσης 2019-03-08
Αξιολόγηση 3.10/5 Συνολικά 41 Αξιολογήσεις
Προγραμματιστής Rynoxx
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Automatic Currency Converter",
    "description": "Automatically convert currencies using rates provided by the European Central Bank",
    "version": "1.0.19",
    "action": {
        "default_icon": "images\/icon_small.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon_small.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "webRequest"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "bgp.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "thirdparty\/money.min.js",
                "thirdparty\/accounting.min.js",
                "thirdparty\/jquery.min.js",
                "thirdparty\/xml2json.min.js",
                "thirdparty\/dompath.min.js",
                "generic_data.js",
                "blacklist.js",
                "conversion.js"
            ]
        }
    ]
}