YouTube Zen Mode
Get rid of all the distractions on YouTube
Hvad er YouTube Zen Mode?
YouTube Zen Mode er en Chrome-udvidelse udviklet af Marbl, og dens hovedfunktion er "Get rid of all the distractions on YouTube".
Udvidelsesskærmbilleder
Download YouTube Zen Mode-udvidelses-CRX-fil
Download YouTube Zen 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
Zen mode extension removes distractions from YouTube. May it be a content such as a news feed, notifications or suggestions of similar videos to the one you are currently watching on youtube. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | dgdfifjibepijpnledojfgcaggckaclb |
| Officiel URL | https://chromewebstore.google.com/detail/youtube-zen-mode/dgdfifjibepijpnledojfgcaggckaclb |
| Beskrivelse | Get rid of all the distractions on YouTube |
| Filstørrelse | 399 KB |
| Antal Installationer | 212 |
| Nuværende Version | 2.1.2 |
| Senest Opdateret | 2023-01-10 |
| Udgivelsesdato | 2020-11-14 |
| Bedømmelse | 5.00/5 Samlet 6 Bedømmelser |
| Udvikler | Marbl |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "YouTube Zen Mode",
"version": "2.1.2",
"description": "Get rid of all the distractions on YouTube",
"manifest_version": 3,
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage",
"tabs",
"webNavigation",
"webRequest"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_title": "Zen",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"browser_specific_settings": {
"gecko": {
"id": "{80b1557a-ec9a-4e6e-8877-8aa4f146c413}"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"youtube\/main.js"
],
"css": [
"youtube\/youtube.css"
],
"run_at": "document_end"
}
]
} | |