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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}