Fuzzy Tab Search

Fuzzy search the title and contents of every tab.

Fuzzy Tab Searchคืออะไร?

Fuzzy Tab Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Moshe Kolodny และคุณลักษณะหลักของมันคือ "Fuzzy search the title and contents of every tab."

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

screenshot
screenshot
screenshot

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

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

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

                        Fuzzy Tab Search allows you allows you to perform a fuzzy search through all your tabs.
Fuzzy Tab Search will show you the tabs in the most recent order used when there is no search text.
Fuzzy Tab Search displays the number of open tabs.

Use Ctrl+Shift+F to launch Fuzzy Tab Search or click the Fuzzy Tab Search icon.

The shortcut can be changed in chrome://extensions/

Icons made by Smashicons from www.flaticon.com is licensed by CC 3.0 BY                    

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

ชื่อ Fuzzy Tab Search Fuzzy Tab Search
ID eigldibiccijmcnikjcibichajdledfl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fuzzy-tab-search/eigldibiccijmcnikjcibichajdledfl
คำอธิบาย Fuzzy search the title and contents of every tab.
ขนาดไฟล์ 37.08 KB
จำนวนการติดตั้ง 117
เวอร์ชันปัจจุบัน 0.0.0.4
อัปเดตครั้งล่าสุด 2018-01-19
วันที่เผยแพร่ 2018-01-19
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Moshe Kolodny
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fuzzy Tab Search",
    "description": "Fuzzy search the title and contents of every tab.",
    "version": "0.0.0.4",
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Fuzzy search all tabs"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js",
            "fuzzySearch.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        }
    }
}