Currency Converter

This extension allows you to convert currencies on the page. Highlight any number on the page and press 'e' to see the conversion.

Currency Converter क्या है?

Currency Converter Austin Freel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to convert currencies on the page. Highlight any number on the page and press 'e' to see the conversion."।

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

screenshot

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

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

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

                        Highlight any value and see the conversion on the page!

A tool for quickly converting foreign currency values.  When traveling, a lot of sites will list prices in the foreign currency, and it can be a bit of a pain to look up all the conversions yourself.  With this extension, you can just highlight the value you want to see the exchange rate for and it will appear.  Exchange between any two currencies by clicking the icon in your Chrome toolbar!                    

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

नाम Currency Converter Currency Converter
ID imnafojoiflogdnhojpbllndkehmadhj
आधिकारिक URL https://chrome.google.com/webstore/detail/currency-converter/imnafojoiflogdnhojpbllndkehmadhj
विवरण This extension allows you to convert currencies on the page. Highlight any number on the page and press 'e' to see the conversion.
फ़ाइल का आकार 70.69 KB
स्थापना संख्या 183
वर्तमान संस्करण 0.0.0.6
अंतिम अपडेट 2017-04-12
प्रकाशन तिथि 2017-04-12
रेटिंग 3.24/5 कुल 17 रेटिंग्स
डेवलपर Austin Freel
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Currency Converter",
    "description": "This extension allows you to convert currencies on the page. Highlight any number on the page and press 'e' to see the conversion.",
    "version": "0.0.0.6",
    "background": {
        "scripts": [
            "externals\/jquery-3.1.0.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "externals\/jquery-3.1.0.min.js",
                "content-script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/icon128off.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "css\/main.css"
    ],
    "permissions": [
        "tabs"
    ]
}