Jump Scare

Allows users to display a jump scare on defined sites

Hvad er Jump Scare?

Jump Scare er en Chrome-udvidelse udviklet af ghc_chrome_extensions, og dens hovedfunktion er "Allows users to display a jump scare on defined sites".

Udvidelsesskærmbilleder

screenshot

Download Jump Scare-udvidelses-CRX-fil

Download Jump Scare-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Jump Scare Jump Scare
ID mcgppfmilllaikblfoknoiilgkcmcepo
Officiel URL https://chrome.google.com/webstore/detail/jump-scare/mcgppfmilllaikblfoknoiilgkcmcepo
Beskrivelse Allows users to display a jump scare on defined sites
Filstørrelse 2.04 MB
Antal Installationer 117
Nuværende Version 1.0.0
Senest Opdateret 2019-05-31
Udgivelsesdato 2019-05-26
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler ghc_chrome_extensions
Betalingsmetode in_app
Understøttede Sprog 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"
    ]
}