BTC To USD

BTC To USD

Τι είναι το BTC To USD;

Το BTC To USD είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.scottofford.com, και η κύρια λειτουργία του είναι "BTC To USD".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης BTC To USD

Λήψη αρχείων επέκτασης BTC To USD σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Cryptocurrency Conversion & Calculation Chrome extension is now available for installation. It can be installed from the Google Chrome Web Store.

I’ve developed this Chrome extension that takes any number from a website that you select/highlight and adds it to a box that you can open and close in the browser window. The use case is this… it copies a BTC amount into your clipboard automatically and allows you to immediately convert that number to $ USD so you can quickly calculate and understand how much that BTC amount is equivalent to in fiat.

The same can be done with the tool from USD->BTC (and soon many other currencies).

Not only will it automatically copy/paste the amount and convert if for you, it will also take multiple numbers that you’ve added to it and will calculate a total (add or subtract the numbers and present a calculated total BTC or USD that you have entered. For example, you highlight and add five different BTC amounts on a webpage, you can then specify whether an entry should be positive (+) or negative (-) number. It will then add and subtract each amount accordingly and present you with the total.

Where this could come in handy, for example, is when you are trading altcoins for bitcoin and you buy/sell back and forth. Your exchange might list the amount you bought, like 0.47832234 BTC and the amount you sold, like 0.59337129 BTC. You would highlight those two numbers and specify which one should be (+) and which should be (-) and it will give you a quick idea of how much BTC you profited in that trade. You can then get a rough idea of how much USD that total amounts to at today’s current BTC->USD exchange rate.

Try out the Cryptocurrency Conversion & Calculation Chrome extension now.

Scott O.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα BTC To USD BTC To USD
ID imkbcjlkopkffnfmpllnlgnfhdidoamk
Επίσημο URL https://chrome.google.com/webstore/detail/btc-to-usd/imkbcjlkopkffnfmpllnlgnfhdidoamk
Περιγραφή BTC To USD
Μέγεθος Αρχείου 920 KB
Αριθμός Εγκαταστάσεων 154
Τρέχουσα Έκδοση 1.0.13
Τελευταία Ενημέρωση 2020-08-31
Ημερομηνία Δημοσίευσης 2018-11-02
Αξιολόγηση 5.00/5 Συνολικά 32 Αξιολογήσεις
Προγραμματιστής https://www.scottofford.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.scottofford.com/crypto-conversion-calculation-tool-app/
URL της Σελίδας Πολιτικής Απορρήτου https://termsfeed.com/privacy-policy/eb3951ef434ccacec1f76fb46e802766
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BTC To USD",
    "version": "1.0.13",
    "description": "BTC To USD",
    "background": {
        "scripts": [
            "jquery-3.3.1.min.js",
            "moment-2.4.0.min.js",
            "zepto-1.1.2.min.js",
            "app.js"
        ],
        "persistent": false
    },
    "icons": {
        "32": "icon32.png"
    },
    "browser_action": {
        "default_icon": "icon32.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "jquery-ui.js",
                "moment-2.4.0.min.js",
                "zepto-1.1.2.min.js",
                "content.js"
            ],
            "css": [
                "content.css",
                "jquery-ui.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*"
    ],
    "permissions": [
        "storage",
        "identity",
        "management"
    ],
    "oauth2": {
        "client_id": "799375467754-mm73jul5q6dlt9387ldve8gts787uo11.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/plus.login",
            "https:\/\/www.googleapis.com\/auth\/chromewebstore.readonly"
        ]
    }
}