Chrome Currency Converter

Automatically convert in-page prices to the selected currency using current rates.

Was ist Chrome Currency Converter?

Chrome Currency Converter ist eine Chrome-Erweiterung, die von George Papadakis entwickelt wurde, und ihr Hauptmerkmal ist "Automatically convert in-page prices to the selected currency using current rates.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Chrome Currency Converter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chrome Currency Converter-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

                        All-new 6.0 version!

--- 

This extension will automatically (or not) convert prices (from major currencies) on any page to the selected currency. 

Features:
- Whitelist or blacklist domains
- Select among dozen of currencies to convert to
- Detects prices in various formats
- Supports 160+ currencies
- Easily toggle between converted and original prices
- Optionally set fee or tax % to be added extra to conversion
- Quick converter (in popup)
- Rates page
- Handles ambiguous currencies
- Many options
- "100% CLEAN" AWARD from Softpedia: http://bit.ly/6cXrpR                    

Grundlegende Informationen zur Erweiterung

Name Chrome Currency Converter Chrome Currency Converter
ID anbfhidldjknonaihbalghlebaijealk
Offizielle URL https://chromewebstore.google.com/detail/chrome-currency-converter/anbfhidldjknonaihbalghlebaijealk
Beschreibung Automatically convert in-page prices to the selected currency using current rates.
Dateigröße 343 KB
Installationsanzahl 56,762
Aktuelle Version 6.8.17
Letztes Update 2021-11-18
Veröffentlichungsdatum 2020-06-05
Bewertung 3.58/5 Insgesamt 1496 Bewertungen
Entwickler George Papadakis
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://www.twitter.com/phaistonian
URL der Datenschutzrichtlinien-Seite https://www.bestprice.gr/assistant/terms
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Currency Converter",
    "short_name": "CCC",
    "description": "Automatically convert in-page prices to the selected currency using current rates.",
    "version": "6.8.17",
    "author": "George Papadakis",
    "commands": {
        "toggle": {
            "suggested_key": {
                "default": "Ctrl+Shift+C",
                "mac": "MacCtrl+Shift+C"
            },
            "description": "Toggle CCC conversion"
        },
        "rates": {
            "suggested_key": {
                "default": "Ctrl+Shift+T",
                "mac": "MacCtrl+Shift+T"
            },
            "description": "Current rates"
        }
    },
    "manifest_version": 2,
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "dist\/script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "html\/options.html"
    },
    "web_accessible_resources": [
        "html\/test.html",
        "html\/*",
        "assets\/*"
    ],
    "content_security_policy": "script-src 'unsafe-eval' 'self' https:\/\/www.google-analytics.com https:\/\/ssl.google-analytics.com https:\/\/www.google-analytics.com; object-src 'self';",
    "browser_action": {
        "default_icon": {
            "16": "assets\/browser-action\/16.png",
            "24": "assets\/browser-action\/24.png",
            "32": "assets\/browser-action\/32.png"
        },
        "default_title": "Chrome Currency Converter",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "16": "assets\/icon\/16.png",
        "48": "assets\/icon\/48.png",
        "128": "assets\/icon\/128.png"
    }
}