Search Bar

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

Qu'est-ce que Search Bar ?

Search Bar est une extension Chrome développée par Timovski Stefan, et sa fonction principale est "A slightly better option than the Google Chrome’s default Find Bar.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Search Bar

Téléchargez les fichiers d'extension Search Bar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Search Bar Search Bar
ID lidhpbnnljgkbcdmojdjfjdbcijheogb
URL Officiel https://chromewebstore.google.com/detail/search-bar/lidhpbnnljgkbcdmojdjfjdbcijheogb
Description A slightly better option than the Google Chrome’s default Find Bar.
Taille du Fichier 19.1 KB
Nombre d'Installations 196
Version Actuelle 0.5
Dernière Mise à Jour 2018-08-28
Date de Publication 2018-08-28
Évaluation 3.00/5 Total 2 Évaluations
Développeur Timovski Stefan
Type de Paiement free
Site Web de l'Extension https://github.com/Timovski/GoogleChromeSearchBar
Langues Prises en Charge 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"
        }
    }
}