Fast Search

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

Fast Search란 무엇입니까?

Fast Search은(는) moldovich에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Puts selected text to search box and finds it on the current page. Like Cntrl+С Cntrl+F Cntrl+V combination."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Fast Search 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Fast Search Fast Search
ID algffpflnieieamgnfgbiiajahjgedkn
공식 URL https://chrome.google.com/webstore/detail/fast-search/algffpflnieieamgnfgbiiajahjgedkn
설명 Puts selected text to search box and finds it on the current page. Like Cntrl+С Cntrl+F Cntrl+V combination.
파일 크기 1.25 MB
설치 횟수 280
현재 버전 1.0.7
최근 업데이트 2014-10-28
출시 날짜 2014-10-28
평점 3.94/5 총 16 개의 평점
개발자 moldovich
결제 유형 free
지원되는 언어 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
        }
    }
}