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.

Что такое Instant Search?

Instant Search - это расширение Chrome, разработанное amilagm, и его основная функция - "Instant google serarch from the current page. Highlight the text and click the search icon. Search results will be shown in a popup.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Instant Search

Скачайте файлы расширений Instant Search в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Instant Search Instant Search
ID ldelfnbfmfpamgcanbnoonnblifbjihh
Официальный URL https://chromewebstore.google.com/detail/instant-search/ldelfnbfmfpamgcanbnoonnblifbjihh
Описание Instant google serarch from the current page. Highlight the text and click the search icon. Search results will be shown in a popup.
Размер файла 19 KB
Количество установок 434
Текущая Версия 1.0.1.2
Последнее Обновление 2013-11-23
Дата публикации 2013-11-23
Рейтинг 5.00/5 Всего 9 оценок
Разработчик amilagm
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}