Trello Horizontal Scroll
Enables Horizontal Scroll in Trello
Trello Horizontal Scroll란 무엇입니까?
Trello Horizontal Scroll은(는) exexzian에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables Horizontal Scroll in Trello"입니다.
확장 프로그램 스크린샷
Trello Horizontal Scroll 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Trello by default doesn't gives the feature to scroll board horizontally whereas as the number of lists grows its not easy to view all lists by clicking and moving the board or moving the horizontal bar manually (surely this flow doesn't seems smooth on desktop and laptops right). So, this extension adds the feature and enables the horizontal scroll on Trello boards. Change Log: v3.1.0 - Updated Options UI as per chrome extension's options UI version 2 with this update - now options window to set scroll speed opens up in extension page. v3.0.0 - Provided option to customize scroll speed ( defaults to 30 ) v2.0.0: - Fixed bugs: now horizontal scroll deactivates automatically once it detects the presence of vertical scroll bar within lists or cards. Note: If horizontal scroll stops working while switching boards - please refresh page.
확장 프로그램 기본 정보
이름 | Trello Horizontal Scroll |
ID | helbelbejomncfaikdnecdmpjfcnpfoi |
공식 URL | https://chromewebstore.google.com/detail/trello-horizontal-scroll/helbelbejomncfaikdnecdmpjfcnpfoi |
설명 | Enables Horizontal Scroll in Trello |
파일 크기 | 40.38 KB |
설치 횟수 | 457 |
현재 버전 | 3.1.1 |
최근 업데이트 | 2015-07-05 |
출시 날짜 | 2015-07-05 |
평점 | 3.86/5 총 7 개의 평점 |
개발자 | exexzian |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Trello Horizontal Scroll", "description": "Enables Horizontal Scroll in Trello", "version": "3.1.1", "permissions": [ "https:\/\/trello.com\/*", "storage" ], "background": { "scripts": [ "jquery.min.js", "jquery.mousewheel.js", "background.js" ], "persistent": false }, "icons": { "128": "TrelloHorizontalScroll128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "jquery.min.js", "jquery.mousewheel.js", "background.js" ] } ] } |