Search Bar

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

Wat is Search Bar?

Search Bar is een Chrome-extensie ontwikkeld door Timovski Stefan, en de belangrijkste functie is "A slightly better option than the Google Chrome’s default Find Bar.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Search Bar

Download Search Bar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Search Bar Search Bar
ID lidhpbnnljgkbcdmojdjfjdbcijheogb
Officiële URL https://chromewebstore.google.com/detail/search-bar/lidhpbnnljgkbcdmojdjfjdbcijheogb
Beschrijving A slightly better option than the Google Chrome’s default Find Bar.
Bestandsgrootte 19.1 KB
Aantal Installaties 196
Huidige Versie 0.5
Laatst Bijgewerkt 2018-08-28
Publicatiedatum 2018-08-28
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Timovski Stefan
Betalingswijze free
Extensiewebsite https://github.com/Timovski/GoogleChromeSearchBar
Ondersteunde Talen 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"
        }
    }
}