Hover Link Checker

Automatically finds and disables dead links that you hover on.

Qu'est-ce que Hover Link Checker ?

Hover Link Checker est une extension Chrome développée par gtian, et sa fonction principale est "Automatically finds and disables dead links that you hover on.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Hover Link Checker

Téléchargez les fichiers d'extension Hover Link Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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-                    

Informations de Base sur l'Extension

Nom Hover Link Checker Hover Link Checker
ID bfnpcgcodakabmhijhfeajicpngggefk
URL Officiel https://chrome.google.com/webstore/detail/hover-link-checker/bfnpcgcodakabmhijhfeajicpngggefk
Description Automatically finds and disables dead links that you hover on.
Taille du Fichier 22.81 KB
Nombre d'Installations 93
Version Actuelle 1.0.1
Dernière Mise à Jour 2018-05-18
Date de Publication 2018-05-18
Évaluation 5.00/5 Total 2 Évaluations
Développeur gtian
Type de Paiement free
Site Web de l'Extension https://github.com/gracetian6/Hover-Link-Checker-
Langues Prises en Charge 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"
    ]
}