SmartSearch

Quickly search a page for a word and its synonyms.

SmartSearch란 무엇입니까?

SmartSearch은(는) Rohan Khajuria에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly search a page for a word and its synonyms."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Searching a page for a topic but just can't seem to find it? SmartSearch is an extension that allows you to search a page not only for a word, but for its synonyms as well.

SmartSearch has an options page that allows you to customize your search functionality. To access the options page, enter "chrome://extensions" into your address bar, find SmartSearch, and click on "options".

Usage Instructions:
• Use the shortcut CTRL+SHIFT+F or click on the extension icon to toggle the search box.
• To search, type in your search query and press enter, the next button, or the previous button.
• Click the counter button (top left) to reset your search iteration to the first term.
• Click the synonyms button (top right) to display a list of the synonyms found on the page.
• Waiting until a page is loaded to search will yield the best results.

On First Installation:
• Visit the option page (see above) to select search functionality.
• Any pages that were open before installation will have to be reloaded to be searched.

Feel free to report any bugs, recommend any features, or ask any questions!                    

확장 프로그램 기본 정보

이름 SmartSearch SmartSearch
ID ggiildmoenlcfobcebgaaofpogcdbpge
공식 URL https://chrome.google.com/webstore/detail/smartsearch/ggiildmoenlcfobcebgaaofpogcdbpge
설명 Quickly search a page for a word and its synonyms.
파일 크기 3.4 MB
설치 횟수 18
현재 버전 0.4.2
최근 업데이트 2016-07-27
출시 날짜 2016-07-27
개발자 Rohan Khajuria
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SmartSearch",
    "description": "Quickly search a page for a word and its synonyms.",
    "version": "0.4.2",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.2.4.min.js",
                "jquery.mark.min.js",
                "searchScript.js"
            ],
            "css": [
                "highlightStyle.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "SmartSearch",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            },
            "description": "Open find box"
        }
    },
    "options_ui": {
        "page": "options.html"
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "database.txt"
    ]
}