Chrome tabs switcher

Chrome extension for easy switching between tabs

Chrome tabs switcherคืออะไร?

Chrome tabs switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vasili Molakhau และคุณลักษณะหลักของมันคือ "Chrome extension for easy switching between tabs"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome tabs switcher

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

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

                        Chrome extension for easy switching between tabs.

Features:
- Shows all tabs in all opened windows (including incognito if appropriate checkbox is selected on chrome://extensions page).
- Allows to filter tabs list with help of text entered in search field.
- Each tab item listed in application includes page title, url and favicon (except cases when current page is loaded via https, but favicon is hosted via http - to prevent mixed content on the page.)
- Allows to close any of listed tabs from the application.
- Allows to navigate between listed tabs via ArrowDown/ArrowUp, Tab/Shift+Tab keys.

Usage:
- Install via chrome web store
- Refresh page to ensure extension script has been loaded
- Use key combination Ctrl + B (will be improved in further versions) to open application
- Apply filter if necessary
- Choose tab you want to switch to and click on it
- Click on the cross icon to close desired tab.

Roadmap:
- Add keyboard support for tabs closing functionality
- Improve keyboard interactions inside application
- Add dynamic configuration for application appearance and functionality                    

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

ชื่อ Chrome tabs switcher Chrome tabs switcher
ID blnlokddecelmlhfpnmeekjcfdfapmjl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chrome-tabs-switcher/blnlokddecelmlhfpnmeekjcfdfapmjl
คำอธิบาย Chrome extension for easy switching between tabs
ขนาดไฟล์ 126 KB
จำนวนการติดตั้ง 223
เวอร์ชันปัจจุบัน 0.7.6
อัปเดตครั้งล่าสุด 2017-02-18
วันที่เผยแพร่ 2017-02-18
คะแนน 2.89/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Vasili Molakhau
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dashukin/chrome-tabs-switcher
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome tabs switcher",
    "version": "0.7.6",
    "default_locale": "en",
    "description": "Chrome extension for easy switching between tabs",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "author": "Vasili Molakhau ",
    "background": {
        "scripts": [
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/contentstyles.css"
            ],
            "js": [
                "js\/contentscript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "current_locale": "'en'",
    "incognito": "spanning",
    "offline_enabled": true,
    "permissions": [
        "tabs"
    ],
    "short_name": "Tabs",
    "storage": [],
    "tts_engine": [],
    "web_accessible_resources": []
}