Jump Scare

Allows users to display a jump scare on defined sites

Что такое Jump Scare?

Jump Scare - это расширение Chrome, разработанное ghc_chrome_extensions, и его основная функция - "Allows users to display a jump scare on defined sites".

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

screenshot

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

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

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

                        With this extension, you can specify websites in which to randomly display a jump scare image and sound to remind yourself that you don't want to be on that, perhaps unproductive, site. You can use this extension to condition yourself not to go to sites of your choosing.

This extension is mostly for fun. Warning: users may find some of the scary images disturbing.                    

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

Название Jump Scare Jump Scare
ID mcgppfmilllaikblfoknoiilgkcmcepo
Официальный URL https://chrome.google.com/webstore/detail/jump-scare/mcgppfmilllaikblfoknoiilgkcmcepo
Описание Allows users to display a jump scare on defined sites
Размер файла 2.04 MB
Количество установок 117
Текущая Версия 1.0.0
Последнее Обновление 2019-05-31
Дата публикации 2019-05-26
Рейтинг 5.00/5 Всего 1 оценок
Разработчик ghc_chrome_extensions
Тип оплаты in_app
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jump Scare",
    "version": "1.0.0",
    "description": "Allows users to display a jump scare on defined sites",
    "icons": {
        "16": "images\/scary-icon-16.png",
        "48": "images\/scary-icon-48.png",
        "128": "images\/scary-icon-128.png"
    },
    "content_scripts": [
        {
            "css": [
                "main\/main.css"
            ],
            "js": [
                "main\/main.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        "images\/*.jpg",
        "images\/*.jpeg",
        "sounds\/*.mp3"
    ]
}