Link Inspector

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

Cos'è Link Inspector?

Link Inspector è un'estensione di Chrome sviluppata da Zac Medico, e la sua funzione principale è "Inspect, filter, and export hyperlinks contained in a web page.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Link Inspector

Scarica i file di estensione Link Inspector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Link Inspector Link Inspector
ID fidhjbfmfkickbdgbpjpkoijmffanefh
URL Ufficiale https://chrome.google.com/webstore/detail/link-inspector/fidhjbfmfkickbdgbpjpkoijmffanefh
Descrizione Inspect, filter, and export hyperlinks contained in a web page.
Dimensione del File 29.33 KB
Conteggio Installazioni 299
Versione Corrente 1.0.0.0
Ultimo Aggiornamento 2015-03-15
Data di Pubblicazione 2015-03-15
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore Zac Medico
Tipo di Pagamento free
Sito Web dell'Estensione https://sites.google.com/site/hyperlinkinspector/
Lingue Supportate 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
}