Link Finder

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

Τι είναι το Link Finder;

Το Link Finder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.lourenco.co.za, και η κύρια λειτουργία του είναι "This extension finds links on a page and groups them by extension.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Link Finder

Λήψη αρχείων επέκτασης Link Finder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Link Finder Link Finder
ID beppfcpnahmjchikpjgdjfckokkojkdf
Επίσημο URL https://chromewebstore.google.com/detail/link-finder/beppfcpnahmjchikpjgdjfckokkojkdf
Περιγραφή This extension finds links on a page and groups them by extension.
Μέγεθος Αρχείου 69.47 KB
Αριθμός Εγκαταστάσεων 436
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2014-07-23
Ημερομηνία Δημοσίευσης 2014-07-23
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής https://www.lourenco.co.za
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://lourenco.co.za/blog/projects/google-chrome-extensions/link-finder/
Διεύθυνση URL της Σελίδας Βοήθειας http://lourenco.co.za/blog/projects/google-chrome-extensions/link-finder/
Υποστηριζόμενες Γλώσσες 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"
    }
}