Link Inspector

Inspect, filter, and export hyperlinks contained in a web page.

Link Inspector क्या है?

Link Inspector Zac Medico द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inspect, filter, and export hyperlinks contained in a web page."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This is an extension for inspecting, filtering, and exporting hyperlinks found in web pages. When browsing any web page, simply click on the extension's popup to view a list of hyperlinks. Links can be filtered by typing into a filter bar, and specific links can be selected by clicking on their respective check-boxes. Selected links can be copied to the clipboard, saved to a file, or exported to a web intent handler.                    

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

नाम Link Inspector Link Inspector
ID fidhjbfmfkickbdgbpjpkoijmffanefh
आधिकारिक URL https://chrome.google.com/webstore/detail/link-inspector/fidhjbfmfkickbdgbpjpkoijmffanefh
विवरण Inspect, filter, and export hyperlinks contained in a web page.
फ़ाइल का आकार 29.33 KB
स्थापना संख्या 299
वर्तमान संस्करण 1.0.0.0
अंतिम अपडेट 2015-03-15
प्रकाशन तिथि 2015-03-15
रेटिंग 4.00/5 कुल 1 रेटिंग्स
डेवलपर Zac Medico
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://sites.google.com/site/hyperlinkinspector/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Inspector",
    "description": "Inspect, filter, and export hyperlinks contained in a web page.",
    "version": "1.0.0.0",
    "icons": {
        "16": "icons\/LinkInspector_16.png",
        "48": "icons\/LinkInspector_48.png",
        "128": "icons\/LinkInspector_128.png"
    },
    "browser_action": {
        "default_icon": "icons\/Chain_no_border_19.png",
        "default_popup": "layout\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/page.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/require.js",
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "options_page": "layout\/options.html",
    "permissions": [
        "clipboardWrite"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/hyperlinkinspector.googlecode.com\/*"
        ]
    },
    "offline_enabled": true
}