Search with Google Instead

You use DuckDuckGo or Bing by default, yet sometimes you want to try the same search in Google? This extension is for you.

Что такое Search with Google Instead?

Search with Google Instead - это расширение Chrome, разработанное Alessandro Muraro, и его основная функция - "You use DuckDuckGo or Bing by default, yet sometimes you want to try the same search in Google? This extension is for you.".

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

screenshot
screenshot

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

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

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

                        This extension adds a nice blue button that performs the same search you just did on Google. No more copy/pasting your search query into google.com, this extension does it for you.                    

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

Название Search with Google Instead Search with Google Instead
ID cdfkjclhhojbgnpidbejchhklnjbjfhh
Официальный URL https://chromewebstore.google.com/detail/search-with-google-instea/cdfkjclhhojbgnpidbejchhklnjbjfhh
Описание You use DuckDuckGo or Bing by default, yet sometimes you want to try the same search in Google? This extension is for you.
Размер файла 16.67 KB
Количество установок 44
Текущая Версия 1.01
Последнее Обновление 2018-08-07
Дата публикации 2018-08-07
Рейтинг 4.00/5 Всего 3 оценок
Разработчик Alessandro Muraro
Тип оплаты free
Официальный сайт расширения https://alexmuraro.me
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Search with Google Instead",
    "short_name": "Google Instead",
    "version": "1.01",
    "description": "You use DuckDuckGo or Bing by default, yet sometimes you want to try the same search in Google? This extension is for you.",
    "author": "Alessandro Muraro",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/duckduckgo.com\/?*",
                "https:\/\/www.bing.com\/search?*"
            ],
            "js": [
                "main.js"
            ]
        }
    ]
}