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은(는) Etheryte에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Right clicking a link opens the link in a new background tab."입니다.

확장 프로그램 스크린샷

screenshot

Right Click Opens Link in a Background Tab 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}