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ファイルをダウンロード

Audio Focus拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}