Instant Search

Instant google serarch from the current page. Highlight the text and click the search icon. Search results will be shown in a popup.

Was ist Instant Search?

Instant Search ist eine Chrome-Erweiterung, die von amilagm entwickelt wurde, und ihr Hauptmerkmal ist "Instant google serarch from the current page. Highlight the text and click the search icon. Search results will be shown in a popup.".

Erweiterungsscreenshots

screenshot
screenshot

Instant Search-Erweiterungs-CRX-Datei herunterladen

Laden Sie Instant Search-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension lets you run an instant google search from the current page you are viewing.

Just highlight the text that you want to search and click the search icon shown next to the highlighted text. 
Then A popup window will appear with the google search results. 

Your comments are always welcome.                    

Grundlegende Informationen zur Erweiterung

Name Instant Search Instant Search
ID ldelfnbfmfpamgcanbnoonnblifbjihh
Offizielle URL https://chromewebstore.google.com/detail/instant-search/ldelfnbfmfpamgcanbnoonnblifbjihh
Beschreibung Instant google serarch from the current page. Highlight the text and click the search icon. Search results will be shown in a popup.
Dateigröße 19 KB
Installationsanzahl 434
Aktuelle Version 1.0.1.2
Letztes Update 2013-11-23
Veröffentlichungsdatum 2013-11-23
Bewertung 5.00/5 Insgesamt 9 Bewertungen
Entwickler amilagm
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instant Search",
    "version": "1.0.1.2",
    "description": "Instant google serarch from the current page. Highlight the text and click the search icon. Search results will be shown in a popup.",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "*:\/\/*\/*",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "searchup.css"
            ],
            "js": [
                "searchup.js"
            ]
        }
    ]
}