Bitcoin Auto-Converter

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

O que é Bitcoin Auto-Converter?

Bitcoin Auto-Converter é uma extensão do Chrome desenvolvida por https://concept211.com, e sua principal característica é "Finds the BTC values on any website and displays the live conversion to your currency.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Bitcoin Auto-Converter

Baixe arquivos de extensão Bitcoin Auto-Converter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Bitcoin Auto-Converter Bitcoin Auto-Converter
ID jjcbgfhjneiblaifakgnnkdakebpebaf
URL Oficial https://chromewebstore.google.com/detail/bitcoin-auto-converter/jjcbgfhjneiblaifakgnnkdakebpebaf
Descrição Finds the BTC values on any website and displays the live conversion to your currency.
Tamanho do Arquivo 119 KB
Contagem de Instalações 1,145
Versão Atual 1.1.5
Última Atualização 2020-05-24
Data de Publicação 2020-05-23
Classificação 4.10/5 Total de 31 Avaliações
Desenvolvedor https://concept211.com
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://twitter.com/concept211
URL da Página de Política de Privacidade http://concept211.com/privacy.html
Idiomas Suportados 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
    }
}