asmr mode
This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.
Vad är asmr mode?
asmr mode är en Chrome-tillägg utvecklad av olinawu3w, och dess huvudfunktion är "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.".
Tilläggsskärmbilder
Ladda ner asmr mode-förlängningens CRX-fil
Ladda ner asmr mode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | asmr mode |
ID | gjknipgeimfanjlgmjjjdfoiakpeihal |
Officiell webbadress | https://chromewebstore.google.com/detail/asmr-mode/gjknipgeimfanjlgmjjjdfoiakpeihal |
Beskrivning | This extension will cancel the sound of youtube ads and replace the sound with asmr sounds. |
Filstorlek | 60.43 MB |
Antal Installationer | 124 |
Aktuell Version | 0.1.0 |
Senast Uppdaterad | 2021-01-20 |
Publiceringsdatum | 2021-01-20 |
Betyg | 3.00/5 Totalt 3 Betyg |
Utvecklare | olinawu3w |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |