asmr mode

This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.

Co je asmr mode?

asmr mode je rozšíření Chrome vyvinuté olinawu3w, a jeho hlavní funkcí je „This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření asmr mode

Stáhněte si soubory rozšíření asmr mode ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension will cancel the sound of youtube ads and replace the sound with ASMR sounds of the user's choice.

Currently, there are 3 ASMR replacement sounds to choose from:
1. cozy fireplace
2. rain
3. garden sounds

The user can also choose to not have any replacement sounds.                    

Základní Informace o Rozšíření

Název asmr mode asmr mode
ID gjknipgeimfanjlgmjjjdfoiakpeihal
Oficiální URL https://chromewebstore.google.com/detail/asmr-mode/gjknipgeimfanjlgmjjjdfoiakpeihal
Popis This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.
Velikost souboru 60.43 MB
Počet instalací 124
Aktuální Verze 0.1.0
Poslední Aktualizace 2021-01-20
Datum Vydání 2021-01-20
Hodnocení 3.00/5 Celkem 3 Hodnocení
Vývojář olinawu3w
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "asmr mode",
    "description": "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.",
    "version": "0.1.0",
    "manifest_version": 2,
    "icons": {
        "16": "media\/icon\/icon_small.png",
        "32": "media\/icon\/icon_small.png",
        "48": "media\/icon\/icon_big.png",
        "128": "media\/icon\/icon_big.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    }
}