asmr mode

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

ما هو asmr mode؟

asmr mode هو إضافة Chrome تم تطويرها بواسطة olinawu3w، والميزة الرئيسية لها هي "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة asmr mode

قم بتنزيل ملفات الامتداد asmr mode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم asmr mode asmr mode
ID gjknipgeimfanjlgmjjjdfoiakpeihal
عنوان URL الرسمي https://chromewebstore.google.com/detail/asmr-mode/gjknipgeimfanjlgmjjjdfoiakpeihal
الوصف This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.
حجم الملف 60.43 MB
عدد التثبيتات 124
النسخة الحالية 0.1.0
آخر تحديث 2021-01-20
تاريخ النشر 2021-01-20
تقييم 3.00/5 مجموع تقييمات 3
المطور olinawu3w
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
    }
}