Speedability
Speed read readability pages similarly to Spritz.
什麼是Speedability?
Speedability是由chrisdavies開發的Chrome擴展程式,該擴展的主要功能是“Speed read readability pages similarly to Spritz.”。
擴展截圖
下載Speedability擴展crx文件
下載Speedability擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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 } |