Bitcoin assistant

This extension adds context menu to enter your bitcoin address into web forms, and enter automatically address on bitvisitor.com.

Bitcoin assistant란 무엇입니까?

Bitcoin assistant은(는) Miracreate에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds context menu to enter your bitcoin address into web forms, and enter automatically address on bitvisitor.com."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Bitcoin assistant 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Set your bitcoin address in this extension's options page.


=== RELEASE NOTE ===
2014/02/02 Sun - version 0.0.2.1547
* Fix to display description

2014/02/01 Sat - version 0.0.1.2013
* Cut debugging code

2014/02/01 Sat - version 0.0.1.1947
* Fix for HTML frames

2014/01/23 Thu - version 0.0.0.2211
* Add English messages

2014/01/23 Thu - version 0.0.0.?
* Add icons
* Add advertise links to bitcoin sites

2014/01/23 Thu - version 0.0.0.?
* Initial release                    

확장 프로그램 기본 정보

이름 Bitcoin assistant Bitcoin assistant
ID ndclmokbpeggeoahfjjkjfifhpjnbkho
공식 URL https://chrome.google.com/webstore/detail/bitcoin-assistant/ndclmokbpeggeoahfjjkjfifhpjnbkho
설명 This extension adds context menu to enter your bitcoin address into web forms, and enter automatically address on bitvisitor.com.
파일 크기 18.02 KB
설치 횟수 201
현재 버전 0.0.2.1547
최근 업데이트 2014-02-01
출시 날짜 2014-02-01
평점 4.25/5 총 4 개의 평점
개발자 Miracreate
결제 유형 free
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bitcoin assistant",
    "description": "__MSG_extDescription__",
    "version": "0.0.2.1547",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/www.bitvisitor.com\/"
            ],
            "js": [
                "bitvisitorTop.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "alarms",
        "notifications"
    ],
    "icons": {
        "16": "icon\/16x15.png",
        "128": "icon\/128x128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon\/19x19.png"
        }
    },
    "default_locale": "en"
}