Bitcoin Paper Wallet Generator

Generate random private (WIF) and public keys or verify your compressed or uncompressed BTC addresses in a secure window

Bitcoin Paper Wallet Generatorคืออะไร?

Bitcoin Paper Wallet Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chandler.stimson และคุณลักษณะหลักของมันคือ "Generate random private (WIF) and public keys or verify your compressed or uncompressed BTC addresses in a secure window"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bitcoin Paper Wallet Generator

ดาวน์โหลดไฟล์ส่วนขยาย Bitcoin Paper Wallet Generator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension generates a new BTC address for you to use as a paper wallet.

Features:
1. Generate a random seed using the native method (crypto.getRandomValues)
2. Improves the randomness using your browser metadata
3. Supports increasing the randomness by altering values with the mouse movements
4. Displays the statistic of how the generated keys are random
5. Uses a clean code without any external dependencies
6. Exports the generated key without the need to copy the content to the clipboard
7. Has a clean code hosted on GitHub so that anybody can review (the source code is much smaller than other similar tools so it can be reviewed easily)
8. Uses a very strict content security policy (CSP) to prevent any internet access
9. Can be launched on an incognito window to improve privacy
10. Has a built-in tool to check if the page has internet access or not
11. You can import any WIF private key either compressed or uncompressed ones to verify their checksum and reconstruct the seed associated with them.
12. Supports BASE58 (P2PKH) and BECH32 (P2WPKH) -  Native SegWit formats

Privacy Policy:
This extension does not have any permission and has no internet access whatsoever.

Note:
1. Use the extension at your own risk. I am not responsible if things do not work.
2. This tool can only generate BTC addresses. Do not use it for other altcoins.

FAQs:
1. Why do I need a new paper wallet generator?
I needed an open-source project with a minimum possible code so that I could simply verify it. There was none!

2. How can I verify the codes that are generated with this extension?
To verify that this tool works on your machine, generate a few keys and verify them on other tools. Almost all wallets accept importing private keys. I would recommend generating at least 10 dummy keys and verifying all of them before generating your real key. Verification consists of two parts: 1. the private WIF key has a valid checksum (so that it can be imported). 2. the private key results in the same public key that this extension displays.

If you find this tool useful, please consider supporting the project;
1FeMpnM9jpkRAGiwuWxytmYCo65pwqZGRj                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Bitcoin Paper Wallet Generator Bitcoin Paper Wallet Generator
ID ncncnbgglmejlbnhoangkekhigfdioeg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bitcoin-paper-wallet-gene/ncncnbgglmejlbnhoangkekhigfdioeg
คำอธิบาย Generate random private (WIF) and public keys or verify your compressed or uncompressed BTC addresses in a secure window
ขนาดไฟล์ 123 KB
จำนวนการติดตั้ง 120
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2022-09-17
วันที่เผยแพร่ 2021-05-18
ผู้พัฒนา chandler.stimson
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/chandler-stimson/bitcoin-paper-wallet
URL หน้าช่วยเหลือ https://github.com/chandler-stimson/bitcoin-paper-wallet
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.2.1",
    "name": "Bitcoin Paper Wallet Generator",
    "description": "Generate random private (WIF) and public keys or verify your compressed or uncompressed BTC addresses in a secure window",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "offline_enabled": true,
    "action": [],
    "background": {
        "service_worker": "worker.js"
    },
    "incognito": "split"
}