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 |
官方網址 | 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" } } |