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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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
Διεύθυνση URL της Σελίδας Βοήθειας https://twitter.com/concept211
URL της Σελίδας Πολιτικής Απορρήτου 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
    }
}