Jump Scare

Allows users to display a jump scare on defined sites

Qu'est-ce que Jump Scare ?

Jump Scare est une extension Chrome développée par ghc_chrome_extensions, et sa fonction principale est "Allows users to display a jump scare on defined sites".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Jump Scare

Téléchargez les fichiers d'extension Jump Scare au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Jump Scare Jump Scare
ID mcgppfmilllaikblfoknoiilgkcmcepo
URL Officiel https://chrome.google.com/webstore/detail/jump-scare/mcgppfmilllaikblfoknoiilgkcmcepo
Description Allows users to display a jump scare on defined sites
Taille du Fichier 2.04 MB
Nombre d'Installations 117
Version Actuelle 1.0.0
Dernière Mise à Jour 2019-05-31
Date de Publication 2019-05-26
Évaluation 5.00/5 Total 1 Évaluations
Développeur ghc_chrome_extensions
Type de Paiement in_app
Langues Prises en Charge 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"
    ]
}