Speedability
Speed read readability pages similarly to Spritz.
Что такое Speedability?
Speedability - это расширение Chrome, разработанное chrisdavies, и его основная функция - "Speed read readability pages similarly to Spritz.".
Снимки экрана расширения
Скачать файл CRX расширения Speedability
Скачайте файлы расширений 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 |
| Официальный 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
} | |