Find URLs

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

Find URLsคืออะไร?

Find URLs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hawks.theorem และคุณลักษณะหลักของมันคือ "Get a clickable list and a copy button of all URLs on the current page."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Find URLs

ดาวน์โหลดไฟล์ส่วนขยาย Find URLs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Find URLs Find URLs
ID mbaojfojmofmeipeclfbkeghnfmkmbjl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/find-urls/mbaojfojmofmeipeclfbkeghnfmkmbjl
คำอธิบาย Get a clickable list and a copy button of all URLs on the current page.
ขนาดไฟล์ 13.49 KB
จำนวนการติดตั้ง 29
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2019-10-22
วันที่เผยแพร่ 2019-10-21
ผู้พัฒนา hawks.theorem
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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
}