Search Bar

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

Cos'è Search Bar?

Search Bar è un'estensione di Chrome sviluppata da Timovski Stefan, e la sua funzione principale è "A slightly better option than the Google Chrome’s default Find Bar.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Search Bar

Scarica i file di estensione Search Bar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Search Bar Search Bar
ID lidhpbnnljgkbcdmojdjfjdbcijheogb
URL Ufficiale https://chromewebstore.google.com/detail/search-bar/lidhpbnnljgkbcdmojdjfjdbcijheogb
Descrizione A slightly better option than the Google Chrome’s default Find Bar.
Dimensione del File 19.1 KB
Conteggio Installazioni 196
Versione Corrente 0.5
Ultimo Aggiornamento 2018-08-28
Data di Pubblicazione 2018-08-28
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore Timovski Stefan
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Timovski/GoogleChromeSearchBar
Lingue Supportate 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"
        }
    }
}