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.」です。
拡張機能のスクリーンショット
asmr mode拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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" } } |