asmr mode

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

What is asmr mode?

asmr mode is a Chrome extension developed by olinawu3w, and its main feature is "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.".

Extension Screenshots

screenshot

Download asmr mode Extension CRX File

Download asmr mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name asmr mode asmr mode
ID gjknipgeimfanjlgmjjjdfoiakpeihal
Official URL 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.
File Size 60.43 MB
Installation Count 124
Current Version 0.1.0
Last Updated 2021-01-20
Publish Date 2021-01-20
Rating 3.00/5 Total 3 Ratings
Developer olinawu3w
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}