Fuzzy Search

Nothing

Fuzzy Search là gì?

Fuzzy Search là một tiện ích mở rộng Chrome được phát triển bởi Nishant, và tính năng chính của nó là "Nothing".

Tải xuống tệp CRX của tiện ích mở rộng Fuzzy Search

Tải xuống các tệp mở rộng Fuzzy Search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Fuzzy Search -


Using this extension you can fuzzy search through history, bookmarks and open tabs.
The number of allowed mistakes depends on the current length of search text. Based on the size of the search space, it will allow 1 mistake per 4 or 5 characters. The mistakes can be of following types - missing character, extra character, replacing character and swapping 2 adjacent characters.


Availabe Shortcuts - 
1. Search All - Fuzzy Search throught bookmarks and history.
2. Search Bookmarks - Fuzzy Search through Bookmarks.
3. Search Tabs - Fuzzy Search through Open tabs in all open windows.
4. Edit Selected Url - Changes the text of search bar to the url of the selected result, if any.
5. Next Results - Displays Next results.
6. Previous Results - Displays Previous results.

To set or change shortcuts - 
Open chrome://extensions. Click Keyboard Shortcuts link at the bottom of the page.

Maximum 10 results are displayed at once.
The shortcut used to display the bar will also hide it.

Other inbuilt shortcuts - 
1. "tab" or "Up arrow Key" or "ctrl + k" - select next result.
2. "shift + tab" or "Down Arrow Key" or "ctrl + j" - select previous result
3. "enter" - Open the selected url in New Tab and focus the new tab.
4. "shift + enter" - Open the selected url in current tab.
5. "alt + enter" - Open the selected url in New Tab without focusing it.
6. "escape" - Hide the search bar. It can create conflict if you also use Vimium.
7. "delete" - Close the currently selected tab if searching in Tabs.


If you find any bug or have performance issues, report it on the github page - https://github.com/NishantVar/FuzzySearchChrome                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fuzzy Search Fuzzy Search
ID fgandbhffoicjlhpbopogojblnbnfkhp
URL Chính Thức https://chrome.google.com/webstore/detail/fuzzy-search/fgandbhffoicjlhpbopogojblnbnfkhp
Mô tả Nothing
Kích Thước Tệp 618 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2014-06-07
Ngày Phát Hành 2014-06-07
Đánh Giá 2.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Nishant
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fuzzy Search",
    "version": "2.0",
    "background": {
        "persistent": true,
        "scripts": [
            "search.js",
            "store.js",
            "utils.js",
            "tabs.js",
            "bg.js"
        ]
    },
    "permissions": [
        "bookmarks",
        "history",
        "windows",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "key_utils.js",
                "commands.js",
                "omnibar.js"
            ],
            "css": [
                "omnibar.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "commands": {
        "search_all": {
            "suggested_key": {
                "default": "Alt+O",
                "mac": "Alt+O"
            },
            "description": "Search All"
        },
        "search_bookmarks": {
            "suggested_key": {
                "default": "Alt+B",
                "mac": "Alt+B"
            },
            "description": "Search Bookmarks"
        },
        "search_tabs": {
            "suggested_key": {
                "default": "Alt+T",
                "mac": "Alt+T"
            },
            "description": "Search Open Tabs"
        },
        "editUrl": {
            "suggested_key": {
                "default": "Alt+I",
                "mac": "Alt+I"
            },
            "description": "Edit Selected Url"
        },
        "nextResults": {
            "description": "Show Next Results"
        },
        "previousResults": {
            "description": "Show Previous Results"
        }
    },
    "description": "Nothing",
    "browser_action": {
        "default_icon": "fuzzy19.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "fuzzy16.png",
        "19": "fuzzy19.png",
        "48": "fuzzy48.png",
        "128": "fuzzy128.png"
    }
}