asmr mode

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

Was ist asmr mode?

asmr mode ist eine Chrome-Erweiterung, die von olinawu3w entwickelt wurde, und ihr Hauptmerkmal ist "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.".

Erweiterungsscreenshots

screenshot

asmr mode-Erweiterungs-CRX-Datei herunterladen

Laden Sie asmr mode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name asmr mode asmr mode
ID gjknipgeimfanjlgmjjjdfoiakpeihal
Offizielle URL https://chromewebstore.google.com/detail/asmr-mode/gjknipgeimfanjlgmjjjdfoiakpeihal
Beschreibung This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.
Dateigröße 60.43 MB
Installationsanzahl 124
Aktuelle Version 0.1.0
Letztes Update 2021-01-20
Veröffentlichungsdatum 2021-01-20
Bewertung 3.00/5 Insgesamt 3 Bewertungen
Entwickler olinawu3w
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}