Btrace from AML Crypto

Btrace solution for AML and risk-score checking of crypto addresses and transactions from AML Crypto

Btrace from AML Crypto란 무엇입니까?

Btrace from AML Crypto은(는) amlcrypto.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Btrace solution for AML and risk-score checking of crypto addresses and transactions from AML Crypto"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Btrace from AML Crypto 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Our solution will check the cryptocurrency wallet for links to "dirty" money in the Ethereum, Bitcoin and Tron blockchains. This will allow you to:
- protect yourself from "dirty" assets (knowing the original of counterparty funds);
- prevent blocking of funds (due to high risk score):
- get out of trouble with the law (on suspicion of money laundering). 

Just download our extension, enable "Enable address tags on explorers" and click on our logo next to the address you are interested in. 

To get detailed information about the crypto address you're interested in, just copy it, paste it into the search box in the extension and click "search". 

Our solution supports Etherscan, Tronscan and Blockchain.com.                    

확장 프로그램 기본 정보

이름 Btrace from AML Crypto Btrace from AML Crypto
ID bdbonaajinddfafejicgofllgdbgmilg
공식 URL https://chromewebstore.google.com/detail/btrace-from-aml-crypto/bdbonaajinddfafejicgofllgdbgmilg
설명 Btrace solution for AML and risk-score checking of crypto addresses and transactions from AML Crypto
파일 크기 64.44 KB
설치 횟수 30
현재 버전 0.2
최근 업데이트 2023-08-03
출시 날짜 2023-06-09
평점 5.00/5 총 6 개의 평점
개발자 amlcrypto.io
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://t.me/AMLCrypto
개인정보 보호 정책 페이지 URL https://btrace.amlcrypto.io/privacy_policy/pub
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Btrace from AML Crypto",
    "description": "Btrace solution for AML and risk-score checking of crypto addresses and transactions from AML Crypto",
    "version": "0.2",
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.etherscan.io\/*"
            ],
            "css": [
                "styles\/content-styles.css"
            ],
            "js": [
                "scripts\/etherscan-script.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.tronscan.org\/*"
            ],
            "css": [
                "styles\/content-styles.css"
            ],
            "js": [
                "scripts\/tronscan-script.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.blockchain.com\/*"
            ],
            "css": [
                "styles\/content-styles.css"
            ],
            "js": [
                "scripts\/blockchain-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*.svg",
                "styles\/content-styles.css"
            ],
            "matches": [
                "https:\/\/*.etherscan.io\/*",
                "https:\/\/*.tronscan.org\/*",
                "https:\/\/*.blockchain.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": ".\/background.js"
    },
    "icons": {
        "16": "images\/icon-16.png",
        "24": "images\/icon-24.png",
        "32": "images\/icon-32.png",
        "64": "images\/icon-64.png"
    }
}