Link Finder

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

什麼是Link Finder?

Link Finder是由https://www.lourenco.co.za開發的Chrome擴展程式,該擴展的主要功能是“This extension finds links on a page and groups them by extension.”。

擴展截圖

screenshot
screenshot

下載Link Finder擴展crx文件

下載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
官方網址 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"
    }
}