Search Bar

A slightly better option than the Google Chrome’s default Find Bar.

What is Search Bar?

Search Bar is a Chrome extension developed by Timovski Stefan, and its main feature is "A slightly better option than the Google Chrome’s default Find Bar.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Search Bar Extension CRX File

Download Search Bar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Pretty much the same as the Google Chrome’s default Find Bar with a few compromises (due to platform limitations) but with a single improvement…

IT SEARCHES THE SELECTED TEXT ON THE PAGE WHEN YOU OPEN IT!!!

That’s all more or less.

Shortcut: Alt + S                    

Extension Basic Information

Name Search Bar Search Bar
ID lidhpbnnljgkbcdmojdjfjdbcijheogb
Official URL https://chromewebstore.google.com/detail/search-bar/lidhpbnnljgkbcdmojdjfjdbcijheogb
Description A slightly better option than the Google Chrome’s default Find Bar.
File Size 19.1 KB
Installation Count 196
Current Version 0.5
Last Updated 2018-08-28
Publish Date 2018-08-28
Rating 3.00/5 Total 2 Ratings
Developer Timovski Stefan
Payment Type free
Extension Website https://github.com/Timovski/GoogleChromeSearchBar
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Search Bar",
    "short_name": "Search Bar",
    "description": "A slightly better option than the Google Chrome\u2019s default Find Bar.",
    "version": "0.5",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "Popup\/popup.html",
        "default_icon": {
            "16": "Images\/icon16.png",
            "32": "Images\/icon32.png",
            "48": "Images\/icon48.png",
            "128": "Images\/icon128.png"
        }
    },
    "icons": {
        "16": "Images\/icon16.png",
        "32": "Images\/icon32.png",
        "48": "Images\/icon48.png",
        "128": "Images\/icon128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+S",
                "windows": "Alt+S",
                "mac": "Alt+S"
            },
            "description": "Opens popup.html"
        }
    }
}