Link Finder

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

Link Finder là gì?

Link Finder là một tiện ích mở rộng Chrome được phát triển bởi https://www.lourenco.co.za, và tính năng chính của nó là "This extension finds links on a page and groups them by extension.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Link Finder

Tải xuống các tệp mở rộng Link Finder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Link Finder Link Finder
ID beppfcpnahmjchikpjgdjfckokkojkdf
URL Chính Thức https://chromewebstore.google.com/detail/link-finder/beppfcpnahmjchikpjgdjfckokkojkdf
Mô tả This extension finds links on a page and groups them by extension.
Kích Thước Tệp 69.47 KB
Số Lần Cài Đặt 436
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2014-07-23
Ngày Phát Hành 2014-07-23
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://www.lourenco.co.za
Loại Thanh Toán free
Trang Web Mở Rộng http://lourenco.co.za/blog/projects/google-chrome-extensions/link-finder/
URL Trang Trợ Giúp http://lourenco.co.za/blog/projects/google-chrome-extensions/link-finder/
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}