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 |
电子邮箱 | [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" } } |