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 là gì?

Right Click Opens Link in a Background Tab là một tiện ích mở rộng Chrome được phát triển bởi Etheryte, và tính năng chính của nó là "Right clicking a link opens the link in a new background tab.".

Ả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 Right Click Opens Link in a Background Tab

Tải xuống các tệp mở rộng Right Click Opens Link in a Background Tab 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

                        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.                    

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

Tên Right Click Opens Link in a Background Tab Right Click Opens Link in a Background Tab
ID njboaameemdigbgpphlidpdcdjmkhfjm
URL Chính Thức https://chromewebstore.google.com/detail/right-click-opens-link-in/njboaameemdigbgpphlidpdcdjmkhfjm
Mô tả Right clicking a link opens the link in a new background tab.
Kích Thước Tệp 25.01 KB
Số Lần Cài Đặt 988
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2024-01-05
Ngày Phát Hành 2023-01-04
Đánh Giá 4.50/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Etheryte
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Etheryte/right-click-opens-link-in-a-background-tab
URL Trang Trợ Giúp https://github.com/Etheryte/right-click-opens-link-in-a-background-tab/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}