asmr mode

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

Co to jest asmr mode?

asmr mode to rozszerzenie Chrome opracowane przez olinawu3w, a jego główną funkcją jest „This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia asmr mode

Pobierz pliki rozszerzeń asmr mode w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa asmr mode asmr mode
ID gjknipgeimfanjlgmjjjdfoiakpeihal
Oficjalny URL https://chromewebstore.google.com/detail/asmr-mode/gjknipgeimfanjlgmjjjdfoiakpeihal
Opis This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.
Rozmiar pliku 60.43 MB
Liczba instalacji 124
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2021-01-20
Data Publikacji 2021-01-20
Ocena 3.00/5 Łącznie 3 Oceny
Deweloper olinawu3w
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}