YouTube: No Shorts, No Community, No Nonsense
Disables different sections for a more enjoyable experience.
Was ist YouTube: No Shorts, No Community, No Nonsense?
YouTube: No Shorts, No Community, No Nonsense ist eine Chrome-Erweiterung, die von Oh Thomas entwickelt wurde, und ihr Hauptmerkmal ist "Disables different sections for a more enjoyable experience.".
Erweiterungsscreenshots
YouTube: No Shorts, No Community, No Nonsense-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube: No Shorts, No Community, No Nonsense-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Choose which sections you'd like to block from loading to save your sanity from the gobble-de-gook they attract. Don't let unwanted content take up your time and space.
Source code:
https://github.com/OhThomas/YouTube-No-Shorts-No-Community-No-Nonsense Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ailbpknjjkdokgecbhhdcmgponjnkaon |
| Offizielle URL | https://chromewebstore.google.com/detail/youtube-no-shorts-no-comm/ailbpknjjkdokgecbhhdcmgponjnkaon |
| Beschreibung | Disables different sections for a more enjoyable experience. |
| Dateigröße | 35.86 KB |
| Installationsanzahl | 39 |
| Aktuelle Version | 0.6660 |
| Letztes Update | 2023-11-01 |
| Veröffentlichungsdatum | 2023-10-07 |
| Entwickler | Oh Thomas |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/OhThomas/YouTube-No-Shorts-No-Community-No-Nonsense |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube: No Shorts, No Community, No Nonsense",
"description": "Disables different sections for a more enjoyable experience.",
"version": "0.6660",
"author": "Oh Thomas",
"action": {
"default_popup": ".\/dsc.html",
"default_icon": {
"16": ".\/images\/dsc16halloween.png",
"32": ".\/images\/dsc32halloween.png",
"48": ".\/images\/dsc48halloween.png",
"64": ".\/images\/dsc64halloween.png",
"96": ".\/images\/dsc96halloween.png",
"128": ".\/images\/dsc128halloween.png"
}
},
"icons": {
"16": ".\/images\/dsc16halloween.png",
"32": ".\/images\/dsc32halloween.png",
"64": ".\/images\/dsc64halloween.png",
"96": ".\/images\/dsc96halloween.png",
"128": ".\/images\/dsc128halloween.png"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"run_at": "document_start",
"js": [
".\/dsc.js"
],
"css": [
".\/dsc.css"
]
}
]
} | |