Speedability
Speed read readability pages similarly to Spritz.
Speedability란 무엇입니까?
Speedability은(는) chrisdavies에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Speed read readability pages similarly to Spritz."입니다.
확장 프로그램 스크린샷
Speedability 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Add a speed-reading helper to Readability with Speedability. This works similarly to Spritz, by displaying the words of the webpage in rapid succession. To use: 1. View a page with Readability (https://www.readability.com/) 2. Click the Speedability icon in the address bar 3. Click play to speed-read the page Additional controls: - Use the left and right arrow keys to quickly scan forward and backward. - Double-click the left and right buttons to skip to the end or beginning
확장 프로그램 기본 정보
이름 | |
ID | gkmeiagfplehlimagckabmgpkkmkbgjh |
공식 URL | https://chrome.google.com/webstore/detail/speedability/gkmeiagfplehlimagckabmgpkkmkbgjh |
설명 | Speed read readability pages similarly to Spritz. |
파일 크기 | 24.96 KB |
설치 횟수 | 85 |
현재 버전 | 1.13 |
최근 업데이트 | 2014-03-13 |
출시 날짜 | 2014-03-13 |
평점 | 3.67/5 총 3 개의 평점 |
개발자 | chrisdavies |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/chrisdavies/speedability |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Speedability", "description": "Speed read readability pages similarly to Spritz.", "version": "1.13", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon.png" }, "permissions": [ "tabs", "*:\/\/*.readability.com\/*", "*:\/\/readability.com\/*", "background", "storage" ], "page_action": { "default_icon": "icon.png", "default_title": "Quick Read", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.readability.com\/*", "*:\/\/readability.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "offline_enabled": true, "manifest_version": 2 } |