Fast Search

Puts selected text to search box and finds it on the current page. Like Cntrl+С Cntrl+F Cntrl+V combination.

Fast Search là gì?

Fast Search là một tiện ích mở rộng Chrome được phát triển bởi moldovich, và tính năng chính của nó là "Puts selected text to search box and finds it on the current page. Like Cntrl+С Cntrl+F Cntrl+V combination.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Fast 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

                        Our extension is intended to make your search of selected text on web page easier.
Just select text with your mouse and press Ctrl + F to start searching, instead of pressing Ctrl+C Ctrl+F Ctrl+V to use default search engine.
Also you can easily set highlitning color of found results.
And as a sweety bonus, we offer you some User Interface Themes.                    

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

Tên Fast Search Fast Search
ID algffpflnieieamgnfgbiiajahjgedkn
URL Chính Thức https://chrome.google.com/webstore/detail/fast-search/algffpflnieieamgnfgbiiajahjgedkn
Mô tả Puts selected text to search box and finds it on the current page. Like Cntrl+С Cntrl+F Cntrl+V combination.
Kích Thước Tệp 1.25 MB
Số Lần Cài Đặt 280
Phiên Bản Hiện Tại 1.0.7
Cập Nhật Lần Cuối 2014-10-28
Ngày Phát Hành 2014-10-28
Đánh Giá 3.94/5 Tổng số 16 Đánh Giá
Nhà Phát Triển moldovich
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": "Fast Search",
    "description": "Puts selected text to search box and finds it on the current page. Like Cntrl+\u0421 Cntrl+F Cntrl+V combination.",
    "version": "1.0.7",
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "hilitor-yanosh.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "event.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "",
        "notifications",
        "storage"
    ],
    "web_accessible_resources": [
        "options.html",
        "hilitor-yanosh.js",
        "content.js"
    ],
    "options_page": "options.html",
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            },
            "description": "Search selected text",
            "global": false
        },
        "next_found": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Go to next found fragment",
            "global": false
        },
        "prev_found": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z"
            },
            "description": "Go to previous found fragment",
            "global": false
        },
        "stop_search": {
            "suggested_key": {
                "default": "Ctrl+Shift+A"
            },
            "description": "Cancel search and close search form",
            "global": false
        }
    }
}