Simple Tab Switcher

A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.

Simple Tab Switcherคืออะไร?

Simple Tab Switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย JmQu และคุณลักษณะหลักของมันคือ "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one."

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

screenshot
screenshot

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

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

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

                        A FREE and SIMPLE tab switcher which enables a shortcut to switch the current tab to previous one. In addition, an extra shortcut to switch the current tab across different windows is also available.

- The default shortcut to switch tabs is [Alt + q] (Option + q) on MacOs.
- The default shortcut to switch windows is [Alt + w] (Option + w) on MacOs.

*P.S.* You can change it through the *chrome://extensions/shortcuts*.

It is open source at https://github.com/SanCoder-Q/tab-switcher                    

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

ชื่อ Simple Tab Switcher Simple Tab Switcher
ID jmihjpkeaeknejefhonkbgldenaplegj
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/simple-tab-switcher/jmihjpkeaeknejefhonkbgldenaplegj
คำอธิบาย A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.
ขนาดไฟล์ 24.19 KB
จำนวนการติดตั้ง 62
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2022-09-24
วันที่เผยแพร่ 2019-03-04
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา JmQu
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/SanCoder-Q/tab-switcher
URL หน้าช่วยเหลือ https://github.com/SanCoder-Q/tab-switcher
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Tab Switcher",
    "description": "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.",
    "version": "0.2.1",
    "icons": {
        "16": "resources\/90.png",
        "48": "resources\/90.png",
        "128": "resources\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "resources\/90.png",
            "48": "resources\/90.png",
            "128": "resources\/128.png"
        }
    },
    "background": {
        "scripts": [
            "bundle.min.js"
        ]
    },
    "commands": {
        "switchTab": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Switch to recent tab"
        },
        "moveTabCrossWindow": {
            "suggested_key": {
                "default": "Alt+W"
            },
            "description": "Move current tab to next window"
        }
    },
    "permissions": [
        "storage",
        "commands",
        "tabs"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "homepage_url": "https:\/\/github.com\/SanCoder-Q\/tab-switcher"
}