Follow Along - Text Highlighter

A browser extension that allows the user to highlight text on hover.

什麼是Follow Along - Text Highlighter?

Follow Along - Text Highlighter是由ncfausti開發的Chrome擴展程式,該擴展的主要功能是“A browser extension that allows the user to highlight text on hover.”。

擴展截圖

screenshot

下載Follow Along - Text Highlighter擴展crx文件

下載Follow Along - Text Highlighter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        I created this tool to make reading webpages (and staying focused on the current line) on my laptop a little bit easier. Helpful for those with Dyslexia and ADHD.

Highlights text that is underneath the mouse cursor. Only works on paragraph tags in HTML, so it only highlights areas with lots of continuous text (e.g. blogs, newspaper articles, etc).

Created by Nick Fausti.
https://nickfausti.com                    

擴展基本資訊

名稱 Follow Along - Text Highlighter Follow Along - Text Highlighter
ID fhpbkbhoeipijhlijiiaeimjnicnmdae
官方網址 https://chromewebstore.google.com/detail/follow-along-text-highlig/fhpbkbhoeipijhlijiiaeimjnicnmdae
簡介 A browser extension that allows the user to highlight text on hover.
檔案大小 4.91 KB
安裝次數 112
目前版本 1.0
更新時間 2020-12-05
上架時間 2020-12-04
評分 1.00/5 共 1 次評分
開發者 ncfausti
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Follow Along - Text Highlighter",
    "description": "A browser extension that allows the user to highlight text on hover.",
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "manifest_version": 2
}