Chrome Currency Converter

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

Chrome Currency Converter क्या है?

Chrome Currency Converter George Papadakis द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically convert in-page prices to the selected currency using current rates."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Chrome Currency Converter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Chrome Currency Converter Chrome Currency Converter
ID anbfhidldjknonaihbalghlebaijealk
आधिकारिक URL https://chromewebstore.google.com/detail/chrome-currency-converter/anbfhidldjknonaihbalghlebaijealk
विवरण Automatically convert in-page prices to the selected currency using current rates.
फ़ाइल का आकार 343 KB
स्थापना संख्या 56,762
वर्तमान संस्करण 6.8.17
अंतिम अपडेट 2021-11-18
प्रकाशन तिथि 2020-06-05
रेटिंग 3.58/5 कुल 1496 रेटिंग्स
डेवलपर George Papadakis
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://www.twitter.com/phaistonian
गोपनीयता नीति पृष्ठ URL https://www.bestprice.gr/assistant/terms
समर्थित भाषाएँ 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"
    }
}