YouTube: No Shorts, No Community, No Nonsense
Disables different sections for a more enjoyable experience.
Vad är YouTube: No Shorts, No Community, No Nonsense?
YouTube: No Shorts, No Community, No Nonsense är en Chrome-tillägg utvecklad av Oh Thomas, och dess huvudfunktion är "Disables different sections for a more enjoyable experience.".
Tilläggsskärmbilder
Ladda ner YouTube: No Shorts, No Community, No Nonsense-förlängningens CRX-fil
Ladda ner YouTube: No Shorts, No Community, No Nonsense-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
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 Grundläggande Information om Tillägg
| Namn | |
| ID | ailbpknjjkdokgecbhhdcmgponjnkaon |
| Officiell webbadress | https://chromewebstore.google.com/detail/youtube-no-shorts-no-comm/ailbpknjjkdokgecbhhdcmgponjnkaon |
| Beskrivning | Disables different sections for a more enjoyable experience. |
| Filstorlek | 35.86 KB |
| Antal Installationer | 39 |
| Aktuell Version | 0.6660 |
| Senast Uppdaterad | 2023-11-01 |
| Publiceringsdatum | 2023-10-07 |
| Utvecklare | Oh Thomas |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/OhThomas/YouTube-No-Shorts-No-Community-No-Nonsense |
| Stödda Språk | 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"
]
}
]
} | |