Link Finder

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

Link Finder क्या है?

Link Finder https://www.lourenco.co.za द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension finds links on a page and groups them by extension."।

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

screenshot
screenshot

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

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

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

                        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"
    }
}