Audio Focus

Focus on audio from the current tab by blurring distracting sounds from other tabs

Audio Focus란 무엇입니까?

Audio Focus은(는) Wilson Jang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Focus on audio from the current tab by blurring distracting sounds from other tabs"입니다.

확장 프로그램 스크린샷

screenshot

Audio Focus 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Audio Focus will help you watch a video or listen to music in the current tab without manually turning off sounds from the other tabs. 

#About Me
I am a software engineer cheering in Seoul, South Korea. I developed Audio Focus for my own needs. :)
I hope you may find it useful too!                    

확장 프로그램 기본 정보

이름 Audio Focus Audio Focus
ID infcjelggnojlbdpohedhilpoghapmim
공식 URL https://chromewebstore.google.com/detail/audio-focus/infcjelggnojlbdpohedhilpoghapmim
설명 Focus on audio from the current tab by blurring distracting sounds from other tabs
파일 크기 332 KB
설치 횟수 140
현재 버전 0.3.2
최근 업데이트 2020-09-25
출시 날짜 2020-05-12
평점 3.86/5 총 7 개의 평점
개발자 Wilson Jang
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Audio Focus",
    "version": "0.3.2",
    "description": "Focus on audio from the current tab by blurring distracting sounds from other tabs",
    "icons": {
        "16": "icons\/icon_main_16x16.png",
        "48": "icons\/icon_main_48x48.png",
        "128": "icons\/icon_main_128x128.png",
        "256": "icons\/icon_main_256x256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Audio Focus",
        "default_icon": {
            "16": "icons\/icon_browser_action_active_16x16.png",
            "48": "icons\/icon_browser_action_active_48x48.png",
            "128": "icons\/icon_browser_action_active_128x128.png",
            "256": "icons\/icon_browser_action_active_256x256.png"
        }
    },
    "options_page": "options\/options.html",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "commands": {
        "toggle-audiofocus": {
            "suggested_key": {
                "default": "Alt+A",
                "mac": "Alt+A"
            },
            "description": "Toggle audio focus"
        }
    },
    "minimum_chrome_version": "32.0.0",
    "web_accessible_resources": [
        "pageScript.js"
    ]
}