Link Inspector

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

Co je Link Inspector?

Link Inspector je rozšíření Chrome vyvinuté Zac Medico, a jeho hlavní funkcí je „Inspect, filter, and export hyperlinks contained in a web page.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Link Inspector

Stáhněte si soubory rozšíření Link Inspector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Link Inspector Link Inspector
ID fidhjbfmfkickbdgbpjpkoijmffanefh
Oficiální URL https://chrome.google.com/webstore/detail/link-inspector/fidhjbfmfkickbdgbpjpkoijmffanefh
Popis Inspect, filter, and export hyperlinks contained in a web page.
Velikost souboru 29.33 KB
Počet instalací 299
Aktuální Verze 1.0.0.0
Poslední Aktualizace 2015-03-15
Datum Vydání 2015-03-15
Hodnocení 4.00/5 Celkem 1 Hodnocení
Vývojář Zac Medico
Typ Platby free
Webové stránky Rozšíření https://sites.google.com/site/hyperlinkinspector/
Podporované Jazyky 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
}