Link Finder

This extension finds links on a page and groups them by extension.

Co je Link Finder?

Link Finder je rozšíření Chrome vyvinuté https://www.lourenco.co.za, a jeho hlavní funkcí je „This extension finds links on a page and groups them by extension.“.

Snímky obrazovky rozšíření

screenshot
screenshot

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

Stáhněte si soubory rozšíření Link Finder 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í

                        Ever looked for a link on a website that is filled with adverts that look like the link you want? If so, this is the extension for you. It analyses the current web page and looks for links to user-defined file extensions (e.g. avi, jpg, mkv, torrent) and displays them, organized by file extension.                    

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

Název Link Finder Link Finder
ID beppfcpnahmjchikpjgdjfckokkojkdf
Oficiální URL https://chromewebstore.google.com/detail/link-finder/beppfcpnahmjchikpjgdjfckokkojkdf
Popis This extension finds links on a page and groups them by extension.
Velikost souboru 69.47 KB
Počet instalací 436
Aktuální Verze 1.0.1
Poslední Aktualizace 2014-07-23
Datum Vydání 2014-07-23
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář https://www.lourenco.co.za
Typ Platby free
Webové stránky Rozšíření http://lourenco.co.za/blog/projects/google-chrome-extensions/link-finder/
URL Stránky Nápovědy http://lourenco.co.za/blog/projects/google-chrome-extensions/link-finder/
Podporované Jazyky en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Finder",
    "short_name": "Link Finder",
    "version": "1.0.1",
    "description": "This extension finds links on a page and groups them by extension.",
    "offline_enabled": true,
    "author": "Jo\u00e3o Louren\u00e7o",
    "homepage_url": "http:\/\/lourenco.co.za\/blog\/projects\/google-chrome-extensions\/link-finder\/",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery-2.1.1.min.js",
                "js\/contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "page_action": {
        "default_icon": "images\/page_action_icon.png",
        "default_popup": "popup.html"
    }
}