Open Tabs In Foreground

Open Tabs In Foreground

Open Tabs In Foreground란 무엇입니까?

Open Tabs In Foreground은(는) Sebastian Blask에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open Tabs In Foreground"입니다.

확장 프로그램 스크린샷

Open Tabs In Foreground 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Open Tabs In Foreground
=======================

Clicking a link using the left mouse button while having Ctrl pressed opens it
in a background tab by default. The same when using the middle mouse button.
This extension opens these tabs in the foreground instead. Tabs are only opened
in the background when having Shift pressed while clicking.

You won't need this extension in Firefox as it has a setting for this called
`When you open a link in a new tab, switch to it immediately`, but in Chrome
there is no way to achieve this otherwise.

Feedback
--------

You can report bugs or make feature requests on
https://github.com/sblask/webextension-open-tabs-in-foreground

Patches are welcome.                    

확장 프로그램 기본 정보

이름 Open Tabs In Foreground Open Tabs In Foreground
ID bmnanfhdjbcilhippcdfbhfpfoipgjgm
공식 URL https://chromewebstore.google.com/detail/open-tabs-in-foreground/bmnanfhdjbcilhippcdfbhfpfoipgjgm
설명 Open Tabs In Foreground
파일 크기 41 KB
설치 횟수 576
현재 버전 1.0.5
최근 업데이트 2023-03-25
출시 날짜 2017-10-10
평점 4.43/5 총 7 개의 평점
개발자 Sebastian Blask
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sblask/webextension-open-tabs-in-foreground
도움말 페이지 URL https://github.com/sblask/webextension-open-tabs-in-foreground
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Sebastian Blask",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Open Tabs In Foreground",
    "homepage_url": "https:\/\/github.com\/sblask\/webextension-open-tabs-in-foreground",
    "icons": {
        "128": "icon-128x128.png",
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "48": "icon-48x48.png",
        "64": "icon-64x64.png"
    },
    "manifest_version": 2,
    "name": "Open Tabs In Foreground",
    "permissions": [
        ""
    ],
    "version": "1.0.5"
}