Hover Link Checker

Automatically finds and disables dead links that you hover on.

Hover Link Checker क्या है?

Hover Link Checker gtian द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically finds and disables dead links that you hover on."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Hover Link Checker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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-                    

एक्सटेंशन की मूल जानकारी

नाम Hover Link Checker Hover Link Checker
ID bfnpcgcodakabmhijhfeajicpngggefk
आधिकारिक URL https://chrome.google.com/webstore/detail/hover-link-checker/bfnpcgcodakabmhijhfeajicpngggefk
विवरण Automatically finds and disables dead links that you hover on.
फ़ाइल का आकार 22.81 KB
स्थापना संख्या 93
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2018-05-18
प्रकाशन तिथि 2018-05-18
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर gtian
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/gracetian6/Hover-Link-Checker-
समर्थित भाषाएँ 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"
    ]
}