LinkDownloader

Grouping all website pages links to one place!

LinkDownloaderคืออะไร?

LinkDownloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sharonbaum.mrkt และคุณลักษณะหลักของมันคือ "Grouping all website pages links to one place!"

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

screenshot

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

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

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

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

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

ชื่อ LinkDownloader LinkDownloader
ID bfllnidboadchhjlofjkanmgdmefljfk
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/linkdownloader/bfllnidboadchhjlofjkanmgdmefljfk
คำอธิบาย Grouping all website pages links to one place!
ขนาดไฟล์ 13.83 KB
จำนวนการติดตั้ง 4,220
เวอร์ชันปัจจุบัน 1
อัปเดตครั้งล่าสุด 2022-12-07
วันที่เผยแพร่ 2022-12-07
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา sharonbaum.mrkt
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://home.aethemselveb.info/
URL หน้าช่วยเหลือ https://home.aethemselveb.info/contact.html
ภาษาที่รองรับ 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": [
        "*:\/\/*\/*"
    ]
}