asmr mode

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

Cos'è asmr mode?

asmr mode è un'estensione di Chrome sviluppata da olinawu3w, e la sua funzione principale è "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione asmr mode

Scarica i file di estensione asmr mode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome asmr mode asmr mode
ID gjknipgeimfanjlgmjjjdfoiakpeihal
URL Ufficiale https://chromewebstore.google.com/detail/asmr-mode/gjknipgeimfanjlgmjjjdfoiakpeihal
Descrizione This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.
Dimensione del File 60.43 MB
Conteggio Installazioni 124
Versione Corrente 0.1.0
Ultimo Aggiornamento 2021-01-20
Data di Pubblicazione 2021-01-20
Valutazione 3.00/5 Totale 3 Valutazioni
Sviluppatore olinawu3w
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}