asmr mode

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

asmr mode란 무엇입니까?

asmr mode은(는) olinawu3w에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds."입니다.

확장 프로그램 스크린샷

screenshot

asmr mode 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}