asmr mode
This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.
Hvad er asmr mode?
asmr mode er en Chrome-udvidelse udviklet af olinawu3w, og dens hovedfunktion er "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.".
Udvidelsesskærmbilleder
Download asmr mode-udvidelses-CRX-fil
Download asmr mode-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
| Navn | |
| ID | gjknipgeimfanjlgmjjjdfoiakpeihal |
| Officiel URL | https://chromewebstore.google.com/detail/asmr-mode/gjknipgeimfanjlgmjjjdfoiakpeihal |
| Beskrivelse | This extension will cancel the sound of youtube ads and replace the sound with asmr sounds. |
| Filstørrelse | 60.43 MB |
| Antal Installationer | 124 |
| Nuværende Version | 0.1.0 |
| Senest Opdateret | 2021-01-20 |
| Udgivelsesdato | 2021-01-20 |
| Bedømmelse | 3.00/5 Samlet 3 Bedømmelser |
| Udvikler | olinawu3w |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
} | |