asmr mode

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

Qu'est-ce que asmr mode ?

asmr mode est une extension Chrome développée par olinawu3w, et sa fonction principale est "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension asmr mode

Téléchargez les fichiers d'extension asmr mode 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

                        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.                    

Informations de Base sur l'Extension

Nom asmr mode asmr mode
ID gjknipgeimfanjlgmjjjdfoiakpeihal
URL Officiel https://chromewebstore.google.com/detail/asmr-mode/gjknipgeimfanjlgmjjjdfoiakpeihal
Description This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.
Taille du Fichier 60.43 MB
Nombre d'Installations 124
Version Actuelle 0.1.0
Dernière Mise à Jour 2021-01-20
Date de Publication 2021-01-20
Évaluation 3.00/5 Total 3 Évaluations
Développeur olinawu3w
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}