Chrome Sound Effects

Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.

Chrome Sound Effects란 무엇입니까?

Chrome Sound Effects은(는) https://sivasuthan.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled."입니다.

확장 프로그램 스크린샷

screenshot

Chrome Sound Effects 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        I created this extension to energize the experience of browsing the web. It adds sound effects to user triggered events like creating and closing tabs, switching tabs, scrolling, navigating back and forward, etc. All the effects can be manually disabled by clicking the extension icon. 
I am working on adding much more nicer sounds. This is my first extension, so please leave feedback for future versions. 

Thank you for checking out the extension.

Contact me by visiting http://sivasuthan.com.                    

확장 프로그램 기본 정보

이름 Chrome Sound Effects Chrome Sound Effects
ID oekengelpdnkfopdkkphkmaacfanbnla
공식 URL https://chromewebstore.google.com/detail/chrome-sound-effects/oekengelpdnkfopdkkphkmaacfanbnla
설명 Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.
파일 크기 28.84 KB
설치 횟수 1,712
현재 버전 1.2
최근 업데이트 2018-03-28
출시 날짜 2018-03-27
평점 3.32/5 총 25 개의 평점
개발자 https://sivasuthan.com
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Sound Effects",
    "version": "1.2",
    "description": "Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.",
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "options_page": "options.html",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "bookmarks",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "options.html"
    },
    "manifest_version": 2
}