Tabbr: Tab Manager

Search your tabs.

Tabbr: Tab Managerคืออะไร?

Tabbr: Tab Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pterhx และคุณลักษณะหลักของมันคือ "Search your tabs."

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

screenshot

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

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

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

                        Move from tab to tab faster by searching for your tab.

- Start a search with Ctrl+T (OSX) or Alt+T (Windows/Linux/ChromeOS).

- Search for a tab based on tab title, content, and url. If you don't remember what the title of the tab was, but you can still search for it by keywords in the content of the tab.

- Jump to last tab by immediately hitting enter after opening tabbr.

- Preview tabs. A snapshot of the tab is displayed on the side.

tabbr is currently in beta.                    

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

ชื่อ Tabbr: Tab Manager Tabbr: Tab Manager
ID pnlmkddpdkjapnghefahkniilfnodcol
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tabbr-tab-manager/pnlmkddpdkjapnghefahkniilfnodcol
คำอธิบาย Search your tabs.
ขนาดไฟล์ 81.61 KB
จำนวนการติดตั้ง 511
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2015-11-09
วันที่เผยแพร่ 2015-11-09
คะแนน 4.04/5 รวมทั้งหมด 51 คะแนน
ผู้พัฒนา pterhx
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tabbr: Tab Manager",
    "icons": {
        "16": "favicon.png",
        "128": "icon128.png"
    },
    "description": "Search your tabs.",
    "version": "0.0.2",
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "",
        "storage",
        "unlimitedStorage",
        "history"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "favicon.png"
    },
    "background": {
        "scripts": [
            "js\/underscore.js",
            "js\/lunr.min.js",
            "js\/repo.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+T",
                "mac": "MacCtrl+T"
            }
        }
    }
}