Bitcoin Microformats

Detects Bitcoin microformat data in web pages. This is an ongoing project.

Bitcoin Microformats क्या है?

Bitcoin Microformats Jonathan Waller द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Detects Bitcoin microformat data in web pages. This is an ongoing project."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bitcoin Microformats एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension will detect embedded Bitcoin addresses in the page, showing a Bitcoin icon in the address bar. Click the coin to view the page's Bitcoin address.

Detects links and meta tags written in these styles:

...





---

Why link to a page, not embedding the address directly? 

Well, you can embed your address in every page of your site, a clean way of letting Bitcoin users know you accept Bitcoin, and if the address changes, you only need to change one file.

Also, in the future, I'd like to use it as a base for sending money, it's a pain typing and sending money to "113oN6A93WnAiK2iKD4BpVMQyDY4fbGEay", so why not just send money to "jonwaller.net", with the Bitcoin address being taken automatically from the web site.

---

Look at it in action on:

Linked page style:
- http://www.jonwaller.net/
Embedded address style:
- https://en.bitcoin.it/wiki/URI_Scheme

---

Developers:

Feel free to send me a pull request on GitHub.
https://github.com/jonwaller/Bitcoin-Microformats                    

एक्सटेंशन की मूल जानकारी

नाम Bitcoin Microformats Bitcoin Microformats
ID bkanicejfbhlidgjkpenmddnacjengld
आधिकारिक URL https://chromewebstore.google.com/detail/bitcoin-microformats/bkanicejfbhlidgjkpenmddnacjengld
विवरण Detects Bitcoin microformat data in web pages. This is an ongoing project.
फ़ाइल का आकार 17.01 KB
स्थापना संख्या 149
वर्तमान संस्करण 1.1
अंतिम अपडेट 2013-03-16
प्रकाशन तिथि 2013-03-16
रेटिंग 4.43/5 कुल 7 रेटिंग्स
डेवलपर Jonathan Waller
भुगतान के प्रकार free
सहायता पृष्ठ URL http://www.jonwaller.net/en/contact/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bitcoin Microformats",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Detects Bitcoin microformat data in web pages. This is an ongoing project.",
    "icons": {
        "16": "images\/bitcoin-16.png",
        "48": "images\/bitcoin-48.png",
        "128": "images\/bitcoin-128.png"
    },
    "page_action": {
        "default_title": "Bitcoin address(es) found on this page.",
        "default_icon": {
            "19": "images\/bitcoin-19.png",
            "38": "images\/bitcoin-38.png"
        }
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "microformat_bitcoin_content_script.js"
            ]
        }
    ],
    "permissions": []
}