Open Links in New Tab

Ensures all links open in a new tab.

Open Links in New Tab란 무엇입니까?

Open Links in New Tab은(는) sassnathan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Ensures all links open in a new tab."입니다.

확장 프로그램 스크린샷

screenshot

Open Links in New Tab 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Why Use Open Links in New Tab?

Navigating the web can involve clicking through a myriad of links. Open Links in New Tab simplifies your browsing experience by automatically opening all links in new tabs. No more right-clicking or using keyboard shortcuts; let this extension do the work for you!

Features:

🌐 Universal Compatibility: Works on all websites.
🛠️ Simple Interface: Just one checkbox to enable or disable the feature.
🟢 Status Indicator: A badge on the extension icon shows whether the feature is currently ON or OFF.
How to Use:

Install the Extension: Add it to Chrome from the Chrome Web Store.
Click the Icon: Find the extension icon in your toolbar and click it.
Enable or Disable: Use the popup checkbox to turn the feature ON or OFF.                    

확장 프로그램 기본 정보

이름 Open Links in New Tab Open Links in New Tab
ID facnjbdmmbddmojfmpfknnkihjcikgon
공식 URL https://chromewebstore.google.com/detail/open-links-in-new-tab/facnjbdmmbddmojfmpfknnkihjcikgon
설명 Ensures all links open in a new tab.
파일 크기 5.34 KB
설치 횟수 107
현재 버전 1.0
최근 업데이트 2023-08-29
출시 날짜 2023-08-28
평점 2.33/5 총 3 개의 평점
개발자 sassnathan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Nathan-S19/OpenLinksInNewTab-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Open Links in New Tab",
    "version": "1.0",
    "description": "Ensures all links open in a new tab.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}