Speedability
Speed read readability pages similarly to Spritz.
Was ist Speedability?
Speedability ist eine Chrome-Erweiterung, die von chrisdavies entwickelt wurde, und ihr Hauptmerkmal ist "Speed read readability pages similarly to Spritz.".
Erweiterungsscreenshots
Speedability-Erweiterungs-CRX-Datei herunterladen
Laden Sie Speedability-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | gkmeiagfplehlimagckabmgpkkmkbgjh |
| Offizielle URL | https://chrome.google.com/webstore/detail/speedability/gkmeiagfplehlimagckabmgpkkmkbgjh |
| Beschreibung | Speed read readability pages similarly to Spritz. |
| Dateigröße | 24.96 KB |
| Installationsanzahl | 85 |
| Aktuelle Version | 1.13 |
| Letztes Update | 2014-03-13 |
| Veröffentlichungsdatum | 2014-03-13 |
| Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
| Entwickler | chrisdavies |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/chrisdavies/speedability |
| Unterstützte Sprachen | 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
} | |