BTC-e Widescreen
Enhanced Widescreen UI for BTC-e.com w/ Trollbox Toggle.
BTC-e Widescreen란 무엇입니까?
BTC-e Widescreen은(는) Coinapps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhanced Widescreen UI for BTC-e.com w/ Trollbox Toggle."입니다.
확장 프로그램 스크린샷
BTC-e Widescreen 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension enhances BTC-e to include the following features: Trollbox Toggle Button Fluid Layout, takes the full browser width Better positioning of Current Orders and Trade History Slightly more modern look and feel Optimized for screens between 1600 and 1920 pixels wide. Open Source @ https://bitbucket.org/Coinapps/btce-widescreen Next planned upgrade: Trollbox filter! Silence an unbearable troll without waiting for a moderator! Donations appreciated: BTC @ 1F8LC9XDdJkdR7W7ihEduBK3TP4QrZXMBU LTC @ LWMxzZjJLGTnpTUqoFXMeCP9uLb6RbBnfR
확장 프로그램 기본 정보
이름 | |
ID | dchcmdjlimledmcdekcahkidfcmjnanb |
공식 URL | https://chrome.google.com/webstore/detail/btc-e-widescreen/dchcmdjlimledmcdekcahkidfcmjnanb |
설명 | Enhanced Widescreen UI for BTC-e.com w/ Trollbox Toggle. |
파일 크기 | 120 KB |
설치 횟수 | 16 |
현재 버전 | 0.0.2 |
최근 업데이트 | 2013-11-14 |
출시 날짜 | 2013-11-14 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Coinapps |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.2", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/bitcoin-16.png", "128": "images\/bitcoin-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "permissions": [ "https:\/\/btc-e.com\/", "storage", "tabs" ], "page_action": { "default_icon": { "19": "images\/bitcoin-19.png", "38": "images\/bitcoin-38.png" }, "default_title": "BTC-e Widescreen", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/btc-e.com\/exchange\/*", "https:\/\/btc-e.com\/exchange\/*", "https:\/\/btc-e.com\/", "https:\/\/btc-e.com\/exchange" ], "css": [ "styles\/main.css" ], "js": [ "scripts\/jquery-2.0.3.js", "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ] } |