LinkDownloader

Grouping all website pages links to one place!

LinkDownloader là gì?

LinkDownloader là một tiện ích mở rộng Chrome được phát triển bởi sharonbaum.mrkt, và tính năng chính của nó là "Grouping all website pages links to one place!".

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

screenshot

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

Tải xuống các tệp mở rộng LinkDownloader 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

                        This extension Grouping all user's website pages links to one place.                    

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

Tên LinkDownloader LinkDownloader
ID bfllnidboadchhjlofjkanmgdmefljfk
URL Chính Thức https://chrome.google.com/webstore/detail/linkdownloader/bfllnidboadchhjlofjkanmgdmefljfk
Mô tả Grouping all website pages links to one place!
Kích Thước Tệp 13.83 KB
Số Lần Cài Đặt 4,220
Phiên Bản Hiện Tại 1
Cập Nhật Lần Cuối 2022-12-07
Ngày Phát Hành 2022-12-07
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển sharonbaum.mrkt
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://home.aethemselveb.info/
URL Trang Trợ Giúp https://home.aethemselveb.info/contact.html
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "logo.png",
        "default_title": "LinkDownloader",
        "default_popup": "popup.html"
    },
    "description": "Grouping all website pages links to one place!",
    "icons": {
        "128": "logo.png"
    },
    "manifest_version": 3,
    "name": "LinkDownloader",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}