Find That Tab

Find that tab you're looking for with just a few keystrokes, reduce tab clutter and be more productive

Find That Tabคืออะไร?

Find That Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย burnedikt และคุณลักษณะหลักของมันคือ "Find that tab you're looking for with just a few keystrokes, reduce tab clutter and be more productive"

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

screenshot
screenshot
screenshot

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

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

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

                        Everyone loves tabs. We love them so much that we keep on opening new ones until we completely lose track of where the tab that we need right now is hiding. "Find That Tab" helps you finding the tab you need in just a heartbeat.

Just activate the extension (using a key-command or by clicking the "Find That Tab"-Icon and just type some things you remember about the tab you're looking for. E.g.: You are looking for facebook among your open tabs, simply activate the extension, type "face" and hit enter and you're there. 

Get back on track with all those tabs and stay productive! Find what you're looking for right away.

Keyboard Shortcut:

You can search your tabs by just clicking the "Find That Tab" - Icon but if you really want to become more productive, it is strongly recommended to assign a keyboard shortcut to activate the extension. To do so, go to chrome://extensions and hit "Keyboard Shortcuts" at the bottom. Then, define a shortcut (e.g. CTRL+Shift+P) for EITHER "Activate the extension" or "Find That Tab Popup". The former is slower but better integrated, the latter is way faster and is recommended for power users.

This Extension is inspired by Sublime Text's awesome "Open Anything" feature (http://sublime-text-unofficial-documentation.readthedocs.org/en/latest/file_management/file_management.html#goto-anything), which allows you to easily find files no matter in which folder they reside. "Find That Tab" provides this feature to reduce tab clutter.

A word on Data Privacy: 
This extension doesn't store any of your browsing data - you can check the source code here: https://github.com/burnedikt/chrome-open-anytab. 

Issues / Bugs:
If you should find any issues or bugs, please post them to https://github.com/burnedikt/chrome-open-anytab/issues                    

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

ชื่อ Find That Tab Find That Tab
ID beejcfphifdejmaghhhbegoiiokgknfo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/find-that-tab/beejcfphifdejmaghhhbegoiiokgknfo
คำอธิบาย Find that tab you're looking for with just a few keystrokes, reduce tab clutter and be more productive
ขนาดไฟล์ 485 KB
จำนวนการติดตั้ง 19
เวอร์ชันปัจจุบัน 1.0.8
อัปเดตครั้งล่าสุด 2016-12-03
วันที่เผยแพร่ 2016-12-03
คะแนน 4.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา burnedikt
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/burnedikt/chrome-find-that-tab
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "1.0.8",
    "author": "Benedikt Reiser",
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png",
        "512": "images\/icon-512.png",
        "1024": "images\/icon-1024.png"
    },
    "default_locale": "en",
    "browser_action": {
        "default_icon": "images\/icon-16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "popup-find-that-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            },
            "description": "Find That Tab Popup (faster than \"Activate the extension\")"
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*"
    ]
}