SiteSearchReddit

Easily search Reddit via Google.

Что такое SiteSearchReddit?

SiteSearchReddit - это расширение Chrome, разработанное Alex Benjamin, и его основная функция - "Easily search Reddit via Google.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Saving the world: fifteen keystrokes at a time.

Reddit's a fantastic source for content, but the search feature is near-unusable. Many folks have found that the best way to find relevant content on Reddit is via Google Search -- appending "site:reddit.com" to a given query. But that's a lot of extra typing.

SiteSearchReddit gives users a simple key-bind -- Ctrl (Cmd on Mac) + Shift + S -- to launch a dialog that automatically searches the given query over Reddit in a new tab.                    

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

Название SiteSearchReddit SiteSearchReddit
ID pnfgklgicgopogcodkjmpbiigcmijpef
Официальный URL https://chromewebstore.google.com/detail/sitesearchreddit/pnfgklgicgopogcodkjmpbiigcmijpef
Описание Easily search Reddit via Google.
Размер файла 14.91 KB
Количество установок 40
Текущая Версия 0.0.1
Последнее Обновление 2021-04-20
Дата публикации 2021-04-19
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Alex Benjamin
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SiteSearchReddit",
    "description": "Easily search Reddit via Google.",
    "manifest_version": 3,
    "version": "0.0.1",
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "omnibox": {
        "keyword": "!ssr"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/ssr_16.png",
            "32": "\/images\/ssr_32.png"
        }
    },
    "icons": {
        "16": "\/images\/ssr_16.png",
        "32": "\/images\/ssr_32.png",
        "64": "\/images\/ssr_64.png",
        "128": "\/images\/ssr_128.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            },
            "description": "Opens SiteSearchReddit."
        }
    }
}