Paridae
Make twitter.com more responsive (previously named Responsive Twitter)
Paridae란 무엇입니까?
Paridae은(는) donnierayjones에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make twitter.com more responsive (previously named Responsive Twitter)"입니다.
확장 프로그램 스크린샷
Paridae 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Have a feature request or bug report? Find me on twitter: @hidrj Paridae is a family of birds which (according to Wikipedia) are highly adaptable, noisy, and social. I thought this bird characteristically describes the aim of this extension. To make a noisy, social twitter.com more adaptable to screen sizes (known in web circles as "responsive design"). This extension used to be named "Responsive Twitter", but I've been asked to change the name. Most Recent Changes: * Better support for multi-photo tweets * Styles updates for new profile layout Features: * Shrinks twitter.com to fit in almost any width you give it. * Disables jQuery animations so that it will feel quicker. * Provides a browser icon/button to open twitter.com in a chrome-less window (i.e. no toolbars) and will remember the window size/position upon closing. * Opens clicked links in the background. * Open links with keyboard shortcut o. * Removes hover effects when the window is really small. Favors keyboard shortcuts over mouse interaction. * Omnibox (i.e. addressbar) support: Type "@" then hit tab. - Searches Twitter - Use @username to go to a user - Use single letter keyboard shortcuts: o, h, c, a, r, d, f, m Full changelog available as git history: https://github.com/donnierayjones/responsive-twitter/commits/master
확장 프로그램 기본 정보
이름 | Paridae |
ID | mlfldkpapihighaigbbaaicpjoddlhhf |
공식 URL | https://chromewebstore.google.com/detail/paridae/mlfldkpapihighaigbbaaicpjoddlhhf |
설명 | Make twitter.com more responsive (previously named Responsive Twitter) |
파일 크기 | 68.24 KB |
설치 횟수 | 184 |
현재 버전 | 0.8.7 |
최근 업데이트 | 2014-06-07 |
출시 날짜 | 2014-06-07 |
평점 | 4.10/5 총 20 개의 평점 |
개발자 | donnierayjones |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/donnierayjones/paridae#make-twitter-responsive |
도움말 페이지 URL | https://github.com/donnierayjones/paridae/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Paridae", "short_name": "Paridae", "version": "0.8.7", "manifest_version": 2, "description": "Make twitter.com more responsive (previously named Responsive Twitter)", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "css": [ "styles.css" ], "js": [ "jquery.js", "script.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "omnibox": { "keyword": "@" }, "browser_action": { "default_icon": "icon48.png" } } |