Gmail Mouse Gestures
Use mouse gestures to browse mails even faster!
Gmail Mouse Gestures란 무엇입니까?
Gmail Mouse Gestures은(는) https://mousegestures.blog.hu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use mouse gestures to browse mails even faster!"입니다.
확장 프로그램 스크린샷
Gmail Mouse Gestures 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Be more productive, save your time, use gestures! This was a Google Mail app (in labs). Unfortunately removed some days ago. So I remade it for us. Any advice and comments are welcome! Support me with 5 stars! :) UPDATE 13/10/12: New version arrived! Major bugs fixed. Enjoy! Need more help? Click! http://mousegestures.blog.hu/ p.s. If it's not working at first, don't give up! Try clearing your cache (Use CTRL+SHIFT+R hotkeys!) and restarting Chrome. That should do the trick. Usage: Press right mouse button then: - drag up: go to inbox* - drag left: newer mail** - drag right: older mail** * I know, this action should go to previous list, unfortunately it's impossible because annoying Chrome bug. :( ** Works only when you are reading a mail (watching a single list soon), because chrome bug. Sorry for that Find me on twitter: @kisPocok
확장 프로그램 기본 정보
이름 | Gmail Mouse Gestures |
ID | aaokajckoheafemlmjacklidohljgkgo |
공식 URL | https://chromewebstore.google.com/detail/gmail-mouse-gestures/aaokajckoheafemlmjacklidohljgkgo |
설명 | Use mouse gestures to browse mails even faster! |
파일 크기 | 111 KB |
설치 횟수 | 1,716 |
현재 버전 | 0.9.5 |
최근 업데이트 | 2022-03-19 |
출시 날짜 | 2022-03-19 |
평점 | 4.42/5 총 78 개의 평점 |
개발자 | https://mousegestures.blog.hu |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://mousegestures.blog.hu/ |
도움말 페이지 URL | http://mousegestures.blog.hu/2012/05/24/mouse-gestures-faq |
개인정보 보호 정책 페이지 URL | https://mousegestures.blog.hu/2022/03/19/privacy-policy-2022 |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gmail Mouse Gestures", "version": "0.9.5", "manifest_version": 2, "description": "Use mouse gestures to browse mails even faster!", "content_scripts": [ { "matches": [ "http:\/\/mail.google.com\/*", "https:\/\/mail.google.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "images\/gestures.png", "images\/icons\/icon-64x64.png", "content-script.css", "manifest.json" ], "permissions": [ "http:\/\/mail.google.com\/*", "https:\/\/mail.google.com\/*", "notifications" ], "icons": { "64": "images\/icons\/icon-64x64.png", "128": "images\/icons\/icon-128x128.png", "256": "images\/icons\/icon-256x256.png", "512": "images\/icons\/icon-512x512.png" } } |