Previous Tab

Switch back to the previously active tab using the keyboard.

Previous Tabคืออะไร?

Previous Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย previoustab.com และคุณลักษณะหลักของมันคือ "Switch back to the previously active tab using the keyboard."

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

screenshot
screenshot

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

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

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

                        Switch to the previously active tab (last tab) by pressing Ctrl+Q, or clicking the Previous Tab icon.

You can change the keyboard shortcut by visiting chrome://extensions/shortcuts .

Previous Tab does not require any permissions to install and use.

Chrome does not allow any extensions to use Ctrl+Tab or Ctrl+` as keyboard shortcuts.

The supported keys are Alt, Ctrl, Cmd along with:
A-Z, 0-9, Comma, Period, Home, End, PageUp, PageDown, Space, Insert, Delete, Arrow keys (Up, Down, Left, Right) and the Media Keys (MediaNextTrack, MediaPlayPause, MediaPrevTrack, MediaStop).

Donations are appreciated at donate.previoustab.com                    

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

ชื่อ Previous Tab Previous Tab
ID bjaniflnlhhofabpoamhnobeonjcjjpl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/previous-tab/bjaniflnlhhofabpoamhnobeonjcjjpl
คำอธิบาย Switch back to the previously active tab using the keyboard.
ขนาดไฟล์ 468 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2022-11-12
วันที่เผยแพร่ 2020-02-28
คะแนน 4.84/5 รวมทั้งหมด 97 คะแนน
ผู้พัฒนา previoustab.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Previous Tab",
    "description": "Switch back to the previously active tab using the keyboard.",
    "version": "1.0.2",
    "manifest_version": 2,
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "switch-to-previously-active-tab": {
            "description": "Switch back to the previously active tab",
            "suggested_key": {
                "default": "Ctrl+Q",
                "mac": "MacCtrl+Q"
            }
        }
    },
    "browser_action": {
        "default_icon": {
            "16": "icon_16.png",
            "48": "icon_48.png",
            "128": "icon_128.png"
        }
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    }
}