Hover Highlighter

Temporary text highlighting for faster reading

什麼是Hover Highlighter?

Hover Highlighter是由collin.brandt1開發的Chrome擴展程式,該擴展的主要功能是“Temporary text highlighting for faster reading”。

擴展截圖

screenshot

下載Hover Highlighter擴展crx文件

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

擴展使用說明

                        Read with ease using HOVER HIGHLIGHTER!

A simple chrome extension that adds a highlighting effect to the text you hover over. This reading aide is great for digesting any story, instruction, comment, or post you come across. Simply click on the extension icon, press the big ON button and watch your text come to life as you follow along with your mouse.

Need some extra focus when studying for that exam? Hover Highlighter's live highlighting will allow your eyes to more easily track the text on your screen so you can get through those tough passages. Come to an end of your studying and just want to relax? press the green ON button to turn off Hover Highlighter until you need it next.

COMING SOON
-Want to customize your highlight? It's on its way!

UPDATE 0.0.5
-Hover Highlighter only highlights when moving mouse from left to right
-Fixed ON - OFF bugs                    

擴展基本資訊

名稱 Hover Highlighter Hover Highlighter
ID cfifhjkjadcbhgagglmigbbinbimfdok
官方網址 https://chromewebstore.google.com/detail/hover-highlighter/cfifhjkjadcbhgagglmigbbinbimfdok
簡介 Temporary text highlighting for faster reading
檔案大小 57.81 KB
安裝次數 221
目前版本 0.0.5
更新時間 2018-08-21
上架時間 2018-08-20
評分 2.33/5 共 3 次評分
開發者 collin.brandt1
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hover Highlighter",
    "version": "0.0.5",
    "description": "Temporary text highlighting for faster reading",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "images\/Icon16.png"
    },
    "icons": {
        "16": "images\/Icon16.png",
        "32": "images\/Icon32.png",
        "48": "images\/Icon48.png",
        "128": "images\/Icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "contentScript.css"
            ],
            "js": [
                "lib\/jquery-3.3.1.min.js",
                "lib\/jquery.blast.min.js",
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "lib\/jquery-3.3.1.min.js",
            "lib\/jquery.blast.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2
}