Right Click Opens Link in a Background Tab

Right clicking a link opens the link in a new background tab.

Right Click Opens Link in a Background Tabคืออะไร?

Right Click Opens Link in a Background Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Etheryte และคุณลักษณะหลักของมันคือ "Right clicking a link opens the link in a new background tab."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Right Click Opens Link in a Background Tab

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

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

                        This extension makes right clicking on links open the link in a new background tab. In short, the same behavior as middle mouse click or Cmd + Click on a link, but for the right mouse button. This makes opening links in new tabs a breeze on modern trackpads, where gestures already allow you to do most navigation operations without ever needing your keyboard.

This extension requires the following permissions:  

 - Access to your tabs. This is required to add new tabs in the correct order.
 - Access to all pages. This is required to listen for right clicks on links.

This extension does not gather any sort of analytics, tracking, or other such information.                    

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

ชื่อ Right Click Opens Link in a Background Tab Right Click Opens Link in a Background Tab
ID njboaameemdigbgpphlidpdcdjmkhfjm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/right-click-opens-link-in/njboaameemdigbgpphlidpdcdjmkhfjm
คำอธิบาย Right clicking a link opens the link in a new background tab.
ขนาดไฟล์ 25.01 KB
จำนวนการติดตั้ง 988
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2024-01-05
วันที่เผยแพร่ 2023-01-04
คะแนน 4.50/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Etheryte
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Etheryte/right-click-opens-link-in-a-background-tab
URL หน้าช่วยเหลือ https://github.com/Etheryte/right-click-opens-link-in-a-background-tab/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Right Click Opens Link in a Background Tab",
    "description": "Right clicking a link opens the link in a new background tab.",
    "version": "1.2",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png",
        "512": "icons\/512.png"
    }
}

ส่วนขยายที่เกี่ยวข้อง