Open Tabs In Foreground

Open Tabs In Foreground

Open Tabs In Foregroundคืออะไร?

Open Tabs In Foreground เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sebastian Blask และคุณลักษณะหลักของมันคือ "Open Tabs In Foreground"

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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Open Tabs In Foreground

ดาวน์โหลดไฟล์ส่วนขยาย Open Tabs In Foreground ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

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