Hover Highlighter

Temporary text highlighting for faster reading

Τι είναι το Hover Highlighter;

Το Hover Highlighter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον collin.brandt1, και η κύρια λειτουργία του είναι "Temporary text highlighting for faster reading".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Hover Highlighter

Λήψη αρχείων επέκτασης 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
Επίσημο URL 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
}