Hello.

Full text search across Chrome tabs.

Что такое Hello.?

Hello. - это расширение Chrome, разработанное Vikesh, и его основная функция - "Full text search across Chrome tabs.".

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

screenshot
screenshot

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

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

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

                        Hello is a simple (and naive) full text search across Chrome tabs.

How to use:
-> Press Ctrl + Enter from any tab.
-> Search any word you remember seeing on any tab open in the current window.
-> Click on the result (or Ctrl + 0-9, or scroll to the result and press Enter).

NOTE: This extension consumes quite a bit of memory. At heavy load (many tabs), the extension may consume up to 200 MB (Though much lesser than the average consumption of many popular websites, which can go up to 300 MB).                    

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

Название Hello. Hello.
ID flgocgfdkefalfmognfpnllliahhgegk
Официальный URL https://chrome.google.com/webstore/detail/hello/flgocgfdkefalfmognfpnllliahhgegk
Описание Full text search across Chrome tabs.
Размер файла 11.58 KB
Количество установок 10
Текущая Версия 1.3
Последнее Обновление 2015-08-27
Дата публикации 2015-08-27
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Vikesh
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "background": {
        "scripts": [
            "js\/porter.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "css\/main.css"
            ],
            "js": [
                "js\/porter.js",
                "js\/content_script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Full text search across Chrome tabs.",
    "manifest_version": 2,
    "name": "Hello.",
    "permissions": [
        "tabs",
        ""
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.3",
    "web_accessible_resources": [
        "img\/*.png",
        "html\/*.html",
        "js\/searchBar.js"
    ]
}