No YouTube Shorts
Removes all Shorts from YouTube
Vad är No YouTube Shorts?
No YouTube Shorts är en Chrome-tillägg utvecklad av Ben, och dess huvudfunktion är "Removes all Shorts from YouTube".
Tilläggsskärmbilder
Ladda ner No YouTube Shorts-förlängningens CRX-fil
Ladda ner No YouTube Shorts-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
Tired of the YouTube Shorts?
No problem, this extension has your back and removes them from the YouTube page!
New in version 0.6.2:
- Bugfixes
Bugs? Improvement ideas? Feel free to message me. Grundläggande Information om Tillägg
| Namn | |
| ID | hjfkenebldkfgibelglepinlabpjfbll |
| Officiell webbadress | https://chromewebstore.google.com/detail/no-youtube-shorts/hjfkenebldkfgibelglepinlabpjfbll |
| Beskrivning | Removes all Shorts from YouTube |
| Filstorlek | 37.34 KB |
| Antal Installationer | 60,000 |
| Aktuell Version | 0.6.2 |
| Senast Uppdaterad | 2023-09-27 |
| Publiceringsdatum | 2022-03-03 |
| Betyg | 4.31/5 Totalt 240 Betyg |
| Utvecklare | Ben |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "No YouTube Shorts",
"description": "Removes all Shorts from YouTube",
"version": "0.6.2",
"action": {
"default_popup": "popup.html",
"default_title": "No YouTube Shorts"
},
"manifest_version": 3,
"default_locale": "en",
"permissions": [
"declarativeContent",
"storage",
"tabs",
"management"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"no-youtube-shorts-content-script.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"background": {
"service_worker": "no-youtube-shorts-background-script.js"
},
"icons": {
"48": "assets\/img\/logo48.png",
"128": "assets\/img\/logo128.png"
},
"web_accessible_resources": [
{
"resources": [
"assets\/no-youtube-shorts.css"
],
"matches": [
"*:\/\/*.youtube.com\/*"
]
}
]
} | |