Bitcoin Auto-Converter

Finds the BTC values on any website and displays the live conversion to your currency.

ما هو Bitcoin Auto-Converter؟

Bitcoin Auto-Converter هو إضافة Chrome تم تطويرها بواسطة https://concept211.com، والميزة الرئيسية لها هي "Finds the BTC values on any website and displays the live conversion to your currency.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Bitcoin Auto-Converter

قم بتنزيل ملفات الامتداد Bitcoin Auto-Converter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Stop wasting time looking up currency calculators and manually entering long numbers! Bitcoin Auto-Converter automatically finds the BTC values on any website and displays the live conversion to your currency. *

If a BTC value can't be found or you'd like to look up the currency for a different crypto-currency coin, then you can highlight and right-click to get a (configurable) list of alt-coin conversions.

A live BTC ticker can also be displayed in your toolbar which updates every 30 seconds along with the current volume and price change.

If you found this tool useful, please consider rating it and maybe writing a quick review for others who may also be interested.

Enjoy!

* Note:
Not all on-screen BTC values will be converted due to the way certain websites display them. For example, real-time tickers are dynamically written to the page, therefore cannot be converted in real-time. Others may use a graphical symbol in front or behind the BTC value, therefore the extension will not be able to find and convert it.

However, in these instances, you may still highlight the value and right-click to get conversions for all of the coins that you specify in the settings.

------------
Changelog
------------
v1.1.4 (1/10/2020)
- Bug: Fixed issue where the Google search page is broken due to the Auto-Convert option being enabled.

v1.1.3 (8/10/2018)
- Update: Reduced the frequency of price updates to avoid timeouts and blank values on context menu.
- Bug: Google Chrome now only allows 4 characters instead of 5 on the icon badge which was cutting off the current BTC price.

v1.1.2 (7/19/2017)
- Feature: Tooltip when hovering over the icon/button now displays the current prices for each alt-coins you've specified in the options.
- Feature: Added option to specify how often to update pricing (default is 30 seconds).
- Update: Improved the way the current prices are stored and updated which improves performance a significant amount.
- Bug: Fixed issue where newly entered alt-coins were not being loaded properly and was displaying "invalid coin" error.

v1.1.1 (6/29/2017)
- Feature: Badge background color can be optionally enabled to change colors (red or green) based on the 1-hour percentage change (+/-).
- Enhancement: Context menu conversions now display the current coin's value. If the coin is worth less than $0.01, then it will also display it with decimal places rather than 2.
- Bug: Fixed issue where currency values were being pulled too quickly and frequently and was causing the in-page conversions not to load consistently. Code has now been optimized to load much more efficiently and without errors.
- Bug: When adding a new coin in the options, it will now reload the current page/tab to ensure that the coin's value loads properly.

v1.0.0 (6/7/2017)
- Initial build/launch.                    

معلومات أساسية عن التمديد

الاسم Bitcoin Auto-Converter Bitcoin Auto-Converter
ID jjcbgfhjneiblaifakgnnkdakebpebaf
عنوان URL الرسمي https://chromewebstore.google.com/detail/bitcoin-auto-converter/jjcbgfhjneiblaifakgnnkdakebpebaf
الوصف Finds the BTC values on any website and displays the live conversion to your currency.
حجم الملف 119 KB
عدد التثبيتات 1,145
النسخة الحالية 1.1.5
آخر تحديث 2020-05-24
تاريخ النشر 2020-05-23
تقييم 4.10/5 مجموع تقييمات 31
المطور https://concept211.com
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://twitter.com/concept211
عنوان صفحة سياسة الخصوصية http://concept211.com/privacy.html
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bitcoin Auto-Converter",
    "version": "1.1.5",
    "description": "Finds the BTC values on any website and displays the live conversion to your currency.",
    "short_name": "BAC",
    "browser_action": {
        "default_icon": "images\/128.png",
        "default_popup": "options.html",
        "default_title": "Loading..."
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "functions.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "content.css"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "functions.js",
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}