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"
    ]
}