SmartSearch

Quickly search a page for a word and its synonyms.

Τι είναι το SmartSearch;

Το SmartSearch είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rohan Khajuria, και η κύρια λειτουργία του είναι "Quickly search a page for a word and its synonyms.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης SmartSearch

Λήψη αρχείων επέκτασης 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
Επίσημο 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"
    ]
}