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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}