Open Multiple Links

Select text with links and open them all in new tabs

Open Multiple Linksคืออะไร?

Open Multiple Links เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marcin Jahn และคุณลักษณะหลักของมันคือ "Select text with links and open them all in new tabs"

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

screenshot

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

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

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

                        Highlight any text and open all the included links at once, in new tabs. Just select the text containing links, right-click it, and select "Open links in new tabs".

The right-click context menu entry for "Open links in new tabs" appears only when the selected text contains any links.

Note that this extension opens only "clickable" links. If a given link is just a text, it will not be included.                    

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

ชื่อ Open Multiple Links Open Multiple Links
ID aihgofmdijjhegajmdomlafeiklofndl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/open-multiple-links/aihgofmdijjhegajmdomlafeiklofndl
คำอธิบาย Select text with links and open them all in new tabs
ขนาดไฟล์ 22.89 KB
จำนวนการติดตั้ง 2,362
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2023-01-10
วันที่เผยแพร่ 2023-01-08
คะแนน 1.67/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Marcin Jahn
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://marcinjahn.com
URL หน้าช่วยเหลือ https://github.com/marcinjahn/open-multiple-links-browser-extension/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open Multiple Links",
    "description": "Select text with links and open them all in new tabs",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "32": "assets\/icons\/icon-32.png",
        "64": "assets\/icons\/icon-64.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}