Better Bird
Makes Twitter a bit better
Better Bird란 무엇입니까?
Better Bird은(는) Matt Sherman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes Twitter a bit better"입니다.
확장 프로그램 스크린샷
Better Bird 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This Google Chrome extension will: - Move content (timeline) to the left-hand side and the dashboard to the right for easier reading. - Expand shortened URL’s wherever possible, so you know where you are actually clicking. - Display your saved searches & @mentions. - Hide “Trends”, “Who to Follow”, and “#Discover” - Widen the layout and (optionally) use a serif font It’s open source, too: https://github.com/clipperhouse/BetterBird Uses the lovely Twitter icons from Design Junction.
확장 프로그램 기본 정보
이름 | |
ID | dolfbfbhjniibjlmpebhdkjanjlcnolp |
공식 URL | https://chromewebstore.google.com/detail/better-bird/dolfbfbhjniibjlmpebhdkjanjlcnolp |
설명 | Makes Twitter a bit better |
파일 크기 | 83.62 KB |
설치 횟수 | 201 |
현재 버전 | 0.4.16 |
최근 업데이트 | 2013-05-05 |
출시 날짜 | 2013-05-05 |
평점 | 4.56/5 총 16 개의 평점 |
개발자 | Matt Sherman |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better Bird", "version": "0.4.16", "description": "Makes Twitter a bit better", "background": { "page": "background.html" }, "web_accessible_resources": [ "img\/twitter_16.png", "img\/twitter_32.png", "img\/twitter_32_notify.png" ], "icons": { "16": "img\/twitter_16.png", "32": "img\/twitter_32.png", "64": "img\/twitter_64.png", "128": "img\/twitter_128.png" }, "browser_action": { "default_icon": "img\/twitter_32.png" }, "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "css": [ "styles.css" ], "js": [ "js\/jquery-1.7.1.min.js", "js\/jquery.hoverIntent.min.js", "js\/utils.min.js", "js\/contentscript.js" ] } ], "permissions": [ "tabs", "*:\/\/twitter.com\/*", "*:\/\/search.twitter.com\/*", "*:\/\/api.twitter.com\/*" ] } |