Hover Link Checker

Automatically finds and disables dead links that you hover on.

What is Hover Link Checker?

Hover Link Checker is a Chrome extension developed by gtian, and its main feature is "Automatically finds and disables dead links that you hover on.".

Extension Screenshots

screenshot
screenshot

Download Hover Link Checker Extension CRX File

Download Hover Link Checker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Hover Link Checker automatically checks all the hyperlinks that you hover over to make sure that they work.

Hover Link is a seemless and quick tool that will allow you to
-strike through dead links
-disable dead links
-turn valid links green for a specified amount of time

No more frustrating Error 404 pages! You can customize how you want your links to appear when you hover over them. 

GITHUB: https://github.com/gracetian6/Hover-Link-Checker-                    

Extension Basic Information

Name Hover Link Checker Hover Link Checker
ID bfnpcgcodakabmhijhfeajicpngggefk
Official URL https://chrome.google.com/webstore/detail/hover-link-checker/bfnpcgcodakabmhijhfeajicpngggefk
Description Automatically finds and disables dead links that you hover on.
File Size 22.81 KB
Installation Count 93
Current Version 1.0.1
Last Updated 2018-05-18
Publish Date 2018-05-18
Rating 5.00/5 Total 2 Ratings
Developer gtian
Payment Type free
Extension Website https://github.com/gracetian6/Hover-Link-Checker-
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hover Link Checker",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Automatically finds and disables dead links that you hover on.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Hover Link Checker",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}