asmr mode

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

Apa itu asmr mode?

asmr mode adalah ekstensi Chrome yang dikembangkan oleh olinawu3w, dan fitur utamanya adalah "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi asmr mode

Unduh file ekstensi asmr mode dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama asmr mode asmr mode
ID gjknipgeimfanjlgmjjjdfoiakpeihal
URL Resmi https://chromewebstore.google.com/detail/asmr-mode/gjknipgeimfanjlgmjjjdfoiakpeihal
Deskripsi This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.
Ukuran File 60.43 MB
Jumlah Instalasi 124
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2021-01-20
Tanggal Publikasi 2021-01-20
Penilaian 3.00/5 Total 3 Penilaian
Pengembang olinawu3w
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}