Popup Tab Switcher

Makes switching between tabs more convenient.

Popup Tab Switcherคืออะไร?

Popup Tab Switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dmitriy Davydov และคุณลักษณะหลักของมันคือ "Makes switching between tabs more convenient."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        The extension shows you a popup with last active tabs when you press its shortcut (Alt + Y by default). You cycle through them by holding Alt and pressing Y. By releasing the Alt key you switch to the chosen tab. This is like switching between apps in Windows (Alt + Tab) and in macOS (Cmd + Tab).

Also, when you close an active tab, you will be placed to the previously active one. It is more helpful than the default Chrome's behaviour, which activates the nearest tab.

You can delegate default switching between tabs by pressing Ctrl + Tab to the extension, see how https://github.com/dvdvdmt/popup-tab-switcher#replace-default-tab-switching-behaviour

NOTE: The extension tries to render its popup on the page wherever it is possible, but there are cases where it can't do that:
* Chrome's web store pages. The extension doesn't work here.
* Special Chrome tabs such as Settings, New tab, History, etc. In this case the extension tries to switch a user from a special tab to a previous tab without showing a popup.
* The page has no focus (a user searches on the page, focused on address bar, etc.). In this case the extension shows its popup and starts a timer by the end of which it will switch a user to the selected tab.
* Files pages (URL starts with file:///). The extension can't work on such pages without a special permission which you can turn on in Extensions > Popup Tab Switcher (Details) > Allow access to file URLs.

Source code on GitHub https://github.com/dvdvdmt/popup-tab-switcher                    

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

ชื่อ Popup Tab Switcher Popup Tab Switcher
ID cehdjppppegalmaffcdffkkpmoflfhkc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/popup-tab-switcher/cehdjppppegalmaffcdffkkpmoflfhkc
คำอธิบาย Makes switching between tabs more convenient.
ขนาดไฟล์ 336 KB
จำนวนการติดตั้ง 10,100
เวอร์ชันปัจจุบัน 2023.4
อัปเดตครั้งล่าสุด 2023-05-09
วันที่เผยแพร่ 2020-07-01
คะแนน 4.51/5 รวมทั้งหมด 103 คะแนน
ผู้พัฒนา Dmitriy Davydov
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dvdvdmt/popup-tab-switcher
URL หน้าช่วยเหลือ https://github.com/dvdvdmt/popup-tab-switcher/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2023.4",
    "name": "Popup Tab Switcher",
    "description": "Makes switching between tabs more convenient.",
    "permissions": [
        "activeTab",
        "favicon",
        "scripting",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "file:\/\/\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/_favicon\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "24": "images\/icon-24.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "Popup tab switcher: Settings",
        "default_popup": "settings\/index.html"
    },
    "commands": {
        "next": {
            "suggested_key": {
                "default": "Alt+Y"
            },
            "description": "Open recent tabs list. Select next"
        },
        "previous": {
            "suggested_key": {
                "default": "Alt+Shift+Y"
            },
            "description": "Open recent tabs list. Select previous"
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "24": "images\/icon-24.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    }
}