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
官方URL 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
}