SmartSearch

Quickly search a page for a word and its synonyms.

Was ist SmartSearch?

SmartSearch ist eine Chrome-Erweiterung, die von Rohan Khajuria entwickelt wurde, und ihr Hauptmerkmal ist "Quickly search a page for a word and its synonyms.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

SmartSearch-Erweiterungs-CRX-Datei herunterladen

Laden Sie SmartSearch-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name SmartSearch SmartSearch
ID ggiildmoenlcfobcebgaaofpogcdbpge
Offizielle URL https://chrome.google.com/webstore/detail/smartsearch/ggiildmoenlcfobcebgaaofpogcdbpge
Beschreibung Quickly search a page for a word and its synonyms.
Dateigröße 3.4 MB
Installationsanzahl 18
Aktuelle Version 0.4.2
Letztes Update 2016-07-27
Veröffentlichungsdatum 2016-07-27
Entwickler Rohan Khajuria
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}