Chrome tab explorer

Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.

Chrome tab explorerคืออะไร?

Chrome tab explorer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sites.google.com/site/fujundu และคุณลักษณะหลักของมันคือ "Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count."

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

screenshot
screenshot

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

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

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

                        Having too many tabs and windows opened in your Chrome browser and having a hard time to keep track of which is which?

This extension lets you search through the tabs using keywords in the title and url of the page.  It also shows tab count.

"Bookmark all" will bookmark all tabs in a directory under "Other Bookmarks" of your bookmark folder.

It can be called out by "Alt + T".                    

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

ชื่อ Chrome tab explorer Chrome tab explorer
ID cjfnaklodefmmoikdpdaagkhbjijlpif
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chrome-tab-explorer/cjfnaklodefmmoikdpdaagkhbjijlpif
คำอธิบาย Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.
ขนาดไฟล์ 10.11 KB
จำนวนการติดตั้ง 190
เวอร์ชันปัจจุบัน 0.4
อัปเดตครั้งล่าสุด 2017-12-22
วันที่เผยแพร่ 2017-12-22
ผู้พัฒนา https://sites.google.com/site/fujundu
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/fjdu/tabExplorer
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome tab explorer",
    "short_name": "Tab explorer",
    "description": "Navigate through the tabs by searching keywords in the page title or url.  Also shows the tab count.",
    "version": "0.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Find tabs by searching keywords in the title or url.  Shortcut: Alt+T."
    },
    "permissions": [
        "tabs",
        "storage",
        "bookmarks",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+T",
                "mac": "Alt+T",
                "chromeos": "Alt+T",
                "linux": "Alt+T"
            }
        }
    }
}