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文件

下載SmartSearch擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}