Tiny BTC Ticker

Never miss a price change again.

Tiny BTC Ticker란 무엇입니까?

Tiny BTC Ticker은(는) Mahn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Never miss a price change again."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Tiny BTC Ticker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        What's new in v0.3:
- Bugfix: options now properly save after exiting chrome (Thanks astanix)
- Bugfix: alerts can now be correctly deactivated as originally intended (Thanks supson6437 and anonymous reporter)
- Bugfix: the extension now won't stay in the background after the browser is closed (Thanks kimosan)
- Feature: Added EUR as a target currency
- Feature: Tiny TRC Ticker and Tiny NMC Ticker now available (search for them in the Chrome Web Store)

----

Have a hard time getting things done at work because you can't stop staring at charts all day? This extension is for you.

Tiny BTC Ticker is a minimalistic price ticker for Bitcoins with zero bells and whistles and focus on doing its job. Features:

- Shows current exchange rate on its icon, updates every minute
- USD exchange rates only, for the moment
- Alert notifications, can notify you of price changes with a customizable threshold
- Alerts work with the icon hidden (perfect if you don't want to be constantly distracted by the price but still be alerted when there's a major price change)

If you found it handy, please consider buying me a beer (or whisky, in bitcoinity tradition):
BTC: 19xQFJabE9ga4kjnKTV94JTirnjy9TKNN9
LTC: LKdZ66KeFLCFGSmRtZwRhzTRMEGSUUtNBE
PPC: PPKDJ86AMwnC4YnYV517KA5U1Px3QgFJWt

ABOUT PERMISSIONS:
This extension requests "your data" on btc-e.com, mtgox.com and vircurex.com. I know, I know, this sounds shady as heck, in reality all this extension does is querying the publically available APIs of these sites to fetch the price directly from them, but unfortunately Chrome permission system granularity is non-existent; I'd love to be able to be more specific with the permissions, but it's all or nothing with Chrome, that is, either one asks for permission to access mtgox.com or one can't query their APIs at all from the extension (to name an example). Note that the extension works just fine if you are logged out of all the aforementioned exchanges, so you might want to consider logging out before installing the extension for extra peace of mind. In fact, your account is probably safest on the wild internet west if you are never logged in except when you specifically want to trade — this is what I'd recommend doing if you are concerned about security, cookies cannot be stolen if they don't exist.                    

확장 프로그램 기본 정보

이름 Tiny BTC Ticker Tiny BTC Ticker
ID phegclbgebimkcbmddleefnbnphckgeb
공식 URL https://chromewebstore.google.com/detail/tiny-btc-ticker/phegclbgebimkcbmddleefnbnphckgeb
설명 Never miss a price change again.
파일 크기 242 KB
설치 횟수 32
현재 버전 0.3
최근 업데이트 2013-04-27
출시 날짜 2013-04-26
평점 3.67/5 총 6 개의 평점
개발자 Mahn
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "browser_action": {
        "default_icon": "bitcoin.png",
        "default_title": "Tiny BTC Ticker"
    },
    "web_accessible_resources": [
        "icon48.png"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Never miss a price change again.",
    "background": {
        "persistent": false,
        "page": "bg.html"
    },
    "name": "Tiny BTC Ticker",
    "options_page": "options.html",
    "permissions": [
        "notifications",
        "https:\/\/btc-e.com\/api\/*",
        "https:\/\/data.mtgox.com\/api\/*",
        "https:\/\/vircurex.com\/api\/*"
    ],
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
    "version": "0.3"
}