ReadFast powered by Spritz

This extension help everyone to read faster.

ReadFast powered by Spritzとは何ですか?

ReadFast powered by SpritzはStéphane Brillantによって開発されたChromeの拡張機能で、その主な機能は「This extension help everyone to read faster.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

ReadFast powered by Spritz拡張機能のCRXファイルをダウンロード

ReadFast powered by Spritz拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Use the official Spritz technology to improve your reading speed.
Works on any page with text content.
Simply double-click on the text you want to read to start Spritzing.
You can also select the text and use the context menu to start Spritzing.
If no text is selected, the whole page will be Spritzed.
Reading speed is configurable via a slider.
Pause is triggered by a click anywhere in the popup or by the CTRL key.
Rewind 1 sentence by using the LEFT arrow key.
Close by clicking outside of the box or with the ESC key.
Double click detection can be disabled by using Alt+S or by clicking on the extension icon.
You can Spritz content from outside of the browser, by copying content to the clipboard and hit the CTRL+B shortcut in chrome to start reading the copied text. This is useful for content that cannot be open in chrome.
Keyboard shortcuts and other settings are configurable via the options menu.

You will be amazed by how fast you can read!

Installation instructions:
If you want to unlock speed over 450wpm, use the login button and follow the registration steps with Spritz. It is all free.
If you have any problem during registration with Spritz, clear your cookies and retry.

An android version is also available here:
https://play.google.com/store/apps/details?id=com.spritzinc.android.sdk.sample.helloworld

RELEASE NOTES
2.5.0
-Added the Spritz from clipboard functionality. Just hit CTRL+B
-Added the possibility to change most of the colors

2.3.3
-You can now Spritz PDF without selecting text first

2.3.3
-Upgrade Spritz SDK to v2.0

2.3.2
-Added an optional progress bar

2.3
-Full PDF support
-Added an options menu to configure settings
-Font size is now configurable
-Added an option to hide background
-Vertical position is now configurable
-Added a close button

2.2
-Added the possibility to disable the double click detection from the BrowserAction icon or the keydoard shortcut Alt+S

2.1
-"Spritz the full page" now work on local content

2.0
-Added "Read the full page" context menu
-Added ESC key to close 
-Fixed compatibility issue with Evernote Clearly
-Integration with Spritz SDK v1.2

1.3
- Integration of official Spritz SDK

1.2
- Added Pause functionnality
- Added Rewind 1 sentence
- Improved text readability by variation of the display speed according to words and sentences length                    

拡張機能の基本情報

名前 ReadFast powered by Spritz ReadFast powered by Spritz
ID blbpafkooanpdcdcndkcckblghjddpke
公式URL https://chromewebstore.google.com/detail/readfast-powered-by-sprit/blbpafkooanpdcdcndkcckblghjddpke
説明 This extension help everyone to read faster.
ファイルサイズ 129 KB
インストール数 2,636
現在のバージョン 2.5.0
最終更新日 2021-04-19
公開日 2020-04-16
評価 3.34/5 合計 32 レビュー
開発者 Stéphane Brillant
Eメール [email protected]
支払い方法 in_app
拡張機能のウェブサイト https://plus.google.com/u/0/communities/104519783853404043888
ヘルプページのURL https://plus.google.com/u/0/communities/104519783853404043888
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ReadFast powered by Spritz",
    "description": "This extension help everyone to read faster.",
    "version": "2.5.0",
    "icons": {
        "16": "public\/images\/spritz-16x16.png",
        "48": "public\/images\/spritz-48x48.png",
        "128": "public\/images\/spritz-128x128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "public\/javascripts\/background.js"
        ]
    },
    "options_page": "public\/options.html",
    "options_ui": {
        "page": "public\/options.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "public\/reader.html",
        "public\/login_success.htm"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "public\/javascripts\/content.js"
            ],
            "css": [
                "public\/css\/spritz.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "public\/images\/icon19.png",
            "38": "public\/images\/icon38.png"
        },
        "default_title": "Click to toggle Spritz double click mouse detection"
    },
    "content_security_policy": "script-src 'self' https:\/\/sdk.spritzinc.com; object-src 'self'",
    "commands": {
        "start-Spritzing": {
            "description": "Start Spritz with the current selection",
            "suggested_key": {
                "default": "Ctrl+Q"
            }
        },
        "toggle-DoubleClick-Detection": {
            "description": "Toggle Spritz double click mouse detection",
            "suggested_key": {
                "default": "Alt+S"
            }
        },
        "start-Spritzing-from-Clipboard": {
            "description": "Start Spritz with the current clipboard content",
            "suggested_key": {
                "default": "Ctrl+B"
            }
        }
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "clipboardRead",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "*:\/\/*\/*"
    ]
}