Tab Activate

New tabs open immediately instead of in the background

Tab Activateคืออะไร?

Tab Activate เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tab Activate และคุณลักษณะหลักของมันคือ "New tabs open immediately instead of in the background"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Activate

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

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

                        Concerns Regarding Required Permissions

Please read the detailed description of required permissions (below) and why they are necessary. Without them, Tab Activate could not work as described. Absolutely no data is changed or collected.

----------------------------------------

Description

When you open a link in a new tab, Chrome opens the new tab in the background and provides no option to switch to it immediately.

With Tab Activate, new tabs open immediately instead of in the background.

To override Tab Activate and open a new tab in the background, press the Shift key while opening the new tab. Note: Override does not work for bookmarks.

Tab Activate effectively reverses Chrome's new tab focus behavior.

In other browsers, this setting is called: "When you open a link in a new tab, switch to it immediately."

----------------------------------------

Required Permissions

Read and change all your data on the websites you visit:
Required to detect when the Shift key is pressed (no website data is read or changed)

Due to limitations in the Chrome extension API, the only way to detect if the Shift key is being pressed is with the required permissions. Absolutely no data is changed or collected.

----------------------------------------

Changes

Version 3.2
Refactored code.
No longer requires bookmarks permission (bookmarks still work).

Version 3.1
Improved Shift key detection when the window loses focus.
Improved error handling.
Fixed a console error.

Version 3.0
Updated to Chrome Manifest V3.

Version 2.1
New icon.
Fixed issues created by Chrome 79 extension API changes.

Version 2.0
As requested, bookmarks are now supported.

Version 1.2
New tabs open to the right of the previous tab and new background tabs open at the end.

Version 1.1
Shift key overrides Tab Activate and opens new tabs in the background.

Version 1.0
Initial release.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tab Activate Tab Activate
ID jlmadbnpnnolpaljadgakjilggigioaj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-activate/jlmadbnpnnolpaljadgakjilggigioaj
คำอธิบาย New tabs open immediately instead of in the background
ขนาดไฟล์ 6.14 KB
จำนวนการติดตั้ง 58,334
เวอร์ชันปัจจุบัน 3.2.1
อัปเดตครั้งล่าสุด 2022-05-20
วันที่เผยแพร่ 2020-01-15
คะแนน 4.08/5 รวมทั้งหมด 250 คะแนน
ผู้พัฒนา Tab Activate
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "New tabs open immediately instead of in the background",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png"
    },
    "manifest_version": 3,
    "name": "Tab Activate",
    "permissions": [
        "tabs"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "3.2.1"
}