Text Speed-reading Extension

A Chrome extension that bolds parts of words to increase your reading speed

Text Speed-reading Extensionとは何ですか?

Text Speed-reading Extensionはjoe44850によって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension that bolds parts of words to increase your reading speed」です。

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

screenshot

Text Speed-reading Extension拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Introducing the new chrome extension that can boost your reading speed! Our extension bolds the first few letters of every word on a webpage within text paragraphs, making it easier for you to scan through the text and identify the most important words. Studies have shown that this technique can significantly increase your reading speed, making it perfect for students, professionals, and anyone who wants to read faster and more efficiently. Try it out today and experience the benefits of this simple yet powerful tool!                    

拡張機能の基本情報

名前 Text Speed-reading Extension Text Speed-reading Extension
ID omdficelahogdlielanbfdcefpckabai
公式URL https://chromewebstore.google.com/detail/text-speed-reading-extens/omdficelahogdlielanbfdcefpckabai
説明 A Chrome extension that bolds parts of words to increase your reading speed
ファイルサイズ 33.97 KB
インストール数 55
現在のバージョン 1.1
最終更新日 2023-05-17
公開日 2023-04-19
評価 5.00/5 合計 2 レビュー
開発者 joe44850
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://joelinstrum.com
プライバシーポリシーページのURL https://docs.google.com/document/d/e/2PACX-1vTpl8SFxETn9eMTG0ROqfHsDfx48wbYjggVleV3On9em4lYHnCn06-NmtFIM3MEskYBmywfjVyZheFO/pub
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Text Speed-reading Extension",
    "version": "1.1",
    "description": "A Chrome extension that bolds parts of words to increase your reading speed",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js",
                "addSpeedRead.js",
                "removeSpeedRead.js"
            ]
        }
    ]
}