Twitter Toolbox
Provides several tools to change the Twitter website to suit you.
Twitter Toolbox란 무엇입니까?
Twitter Toolbox은(는) Isaac Whitfield에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides several tools to change the Twitter website to suit you."입니다.
확장 프로그램 스크린샷
Twitter Toolbox 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tired of not being able to customize Twitter how you like it? Then this extension is for you! I made the base for this a while ago, but decided I should turn it into something better, so here's a basic implementation. It allows you to change various aspects of Twitter. 1. Show your full tweet number instead of 22.9K 2. Extend your profile header to be full-size. 3. Remove your profile header completely 4. Remove the "Who To Follow" box 5. Remove the "Top Trends" box 6. Remove the "Photos and Videos" box 7. Remove "Promotional Tweets" All options are configurable via the icon in the URL bar when on Twitter, or via the Extensions options page. If there are feature requests, let me know and I'll implement them. The source can be found here: https://github.com/iwhitfield/TwitterToolbox
확장 프로그램 기본 정보
이름 | Twitter Toolbox |
ID | akigidnfaadplbagdcahkhajlignocfh |
공식 URL | https://chromewebstore.google.com/detail/twitter-toolbox/akigidnfaadplbagdcahkhajlignocfh |
설명 | Provides several tools to change the Twitter website to suit you. |
파일 크기 | 71.04 KB |
설치 횟수 | 146 |
현재 버전 | 1.1 |
최근 업데이트 | 2014-03-21 |
출시 날짜 | 2014-03-21 |
평점 | 2.00/5 총 1 개의 평점 |
개발자 | Isaac Whitfield |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Toolbox", "version": "1.1", "manifest_version": 2, "description": "Provides several tools to change the Twitter website to suit you.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "page_action": { "default_icon": "icons\/icon48.png", "default_popup": "options.html", "default_title": "Twitter Toolbox" }, "options_page": "options.html", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "js": [ "js\/jquery-1.8.3.min.js", "js\/waitForKeyElements.js", "js\/twitterstyle.js" ], "run_at": "document_end" } ] } |