Find URLs

Get a clickable list and a copy button of all URLs on the current page.

Find URLs là gì?

Find URLs là một tiện ích mở rộng Chrome được phát triển bởi hawks.theorem, và tính năng chính của nó là "Get a clickable list and a copy button of all URLs on the current page.".

Ả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 Find URLs

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

                        Click the "Find URLs" icon next to the address bar and get a list over all the URLs used on the current website.

You will be able to click on the links and copy  or download a list of all the URLs.

Credits:
Photo by Chase Clark on Unsplash
Icons made by "https://www.flaticon.com/authors/alfredo-hernandez"
https://www.npmjs.com/package/valid-url                    

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

Tên Find URLs Find URLs
ID mbaojfojmofmeipeclfbkeghnfmkmbjl
URL Chính Thức https://chromewebstore.google.com/detail/find-urls/mbaojfojmofmeipeclfbkeghnfmkmbjl
Mô tả Get a clickable list and a copy button of all URLs on the current page.
Kích Thước Tệp 13.49 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2019-10-22
Ngày Phát Hành 2019-10-21
Nhà Phát Triển hawks.theorem
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Find URLs",
    "version": "1.0.0",
    "description": "Get a clickable list and a copy button of all URLs on the current page.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Find URLs!",
        "default_icon": {
            "16": "www16.png",
            "32": "www32.png",
            "64": "www64.png",
            "128": "www128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "www16.png",
        "32": "www32.png",
        "64": "www64.png",
        "128": "www128.png"
    },
    "permissions": [
        "declarativeContent",
        "activeTab"
    ],
    "manifest_version": 2
}