Bitcoin Auto-Converter

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

Apa itu Bitcoin Auto-Converter?

Bitcoin Auto-Converter adalah ekstensi Chrome yang dikembangkan oleh https://concept211.com, dan fitur utamanya adalah "Finds the BTC values on any website and displays the live conversion to your currency.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Bitcoin Auto-Converter

Unduh file ekstensi Bitcoin Auto-Converter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Bitcoin Auto-Converter Bitcoin Auto-Converter
ID jjcbgfhjneiblaifakgnnkdakebpebaf
URL Resmi https://chromewebstore.google.com/detail/bitcoin-auto-converter/jjcbgfhjneiblaifakgnnkdakebpebaf
Deskripsi Finds the BTC values on any website and displays the live conversion to your currency.
Ukuran File 119 KB
Jumlah Instalasi 1,145
Versi Saat Ini 1.1.5
Terakhir Diperbarui 2020-05-24
Tanggal Publikasi 2020-05-23
Penilaian 4.10/5 Total 31 Penilaian
Pengembang https://concept211.com
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://twitter.com/concept211
URL Halaman Kebijakan Privasi http://concept211.com/privacy.html
Bahasa yang Didukung 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
    }
}