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.

Vad är Instant Search?

Instant Search är en Chrome-tillägg utvecklad av amilagm, och dess huvudfunktion är "Instant google serarch from the current page. Highlight the text and click the search icon. Search results will be shown in a popup.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Instant Search-förlängningens CRX-fil

Ladda ner Instant Search-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Instant Search Instant Search
ID ldelfnbfmfpamgcanbnoonnblifbjihh
Officiell webbadress https://chromewebstore.google.com/detail/instant-search/ldelfnbfmfpamgcanbnoonnblifbjihh
Beskrivning Instant google serarch from the current page. Highlight the text and click the search icon. Search results will be shown in a popup.
Filstorlek 19 KB
Antal Installationer 434
Aktuell Version 1.0.1.2
Senast Uppdaterad 2013-11-23
Publiceringsdatum 2013-11-23
Betyg 5.00/5 Totalt 9 Betyg
Utvecklare amilagm
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}