Chrommander - tab navigator

Use Chrommander's search box to quickly jump to any opened tab or bookmark.

Chrommander - tab navigatorคืออะไร?

Chrommander - tab navigator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Simon Soriano และคุณลักษณะหลักของมันคือ "Use Chrommander's search box to quickly jump to any opened tab or bookmark."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrommander - tab navigator

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

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

                        Use Chrommander's search box to quickly jump to any opened tab or bookmark.

Features:
- Press `Ctrl+P` in MacOS or `Ctrl+Shift+P` in the rest of operating systems, and you'll see a list with all the currently opened tabs.
- Move within the list of results using the up and down arrow keys or the mouse
- Type in the search box to filter the results
- Search for bookmarks by typing "b" at the beginning and then the name of the bookmark that you want to open
- Select the tab or bookmark that you want to open and press enter or click on it

https://github.com/simon0191/chrommander                    

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

ชื่อ Chrommander - tab navigator Chrommander - tab navigator
ID ebbmganccobhlpcbkmodhiclngkbkcci
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chrommander-tab-navigator/ebbmganccobhlpcbkmodhiclngkbkcci
คำอธิบาย Use Chrommander's search box to quickly jump to any opened tab or bookmark.
ขนาดไฟล์ 490 KB
จำนวนการติดตั้ง 130
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2018-08-19
วันที่เผยแพร่ 2018-08-19
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Simon Soriano
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/simon0191/chrommander
URL หน้าช่วยเหลือ https://github.com/simon0191/chrommander/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrommander - tab navigator",
    "short_name": "Chrommander",
    "version": "0.0.2",
    "description": "Use Chrommander's search box to quickly jump to any opened tab or bookmark.",
    "author": "@simon0191",
    "browser_action": {
        "default_popup": "popup\/index.html"
    },
    "background": {
        "scripts": [
            "background\/bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "foreground\/bundle.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "bookmarks",
        "chrome:\/\/favicon\/"
    ],
    "commands": {
        "_execute_browser_action": {
            "description": "Open Chrommander",
            "suggested_key": {
                "windows": "Ctrl+Shift+P",
                "mac": "MacCtrl+P",
                "chromeos": "Ctrl+Shift+P",
                "linux": "Ctrl+Shift+P"
            }
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}