Focused Youtube
Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube
Was ist Focused Youtube?
Focused Youtube ist eine Chrome-Erweiterung, die von makaroni4 entwickelt wurde, und ihr Hauptmerkmal ist "Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube".
Erweiterungsscreenshots
Focused Youtube-Erweiterungs-CRX-Datei herunterladen
Laden Sie Focused Youtube-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
This is an open-source extension that changes homepage of Youtube (only search bar) and drops recommendations/comments from other pages.
Extension requires access to Youtube website to change its outlook.
Extension icon opens a popup with an option to show/hide the comments section of a video (to check timestamps in comments, for example).
Enjoy <3
Important: the extension doesn't collect any data about Youtube usage. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nfghbmabdoakhobmimnjkamfdnpfammn |
| Offizielle URL | https://chromewebstore.google.com/detail/focused-youtube/nfghbmabdoakhobmimnjkamfdnpfammn |
| Beschreibung | Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube |
| Dateigröße | 170 KB |
| Installationsanzahl | 4,232 |
| Aktuelle Version | 1.12 |
| Letztes Update | 2024-01-27 |
| Veröffentlichungsdatum | 2019-01-06 |
| Bewertung | 4.88/5 Insgesamt 72 Bewertungen |
| Entwickler | makaroni4 |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/makaroni4/focused_youtube |
| Hilfeseite URL | https://github.com/makaroni4/focused_youtube/issues |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Focused Youtube",
"description": "Open source extension that removes comments\/recommendations from Youtube: https:\/\/github.com\/makaroni4\/focused_youtube",
"version": "1.12",
"author": "Anatoli Makarevich",
"icons": {
"128": "extension_icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"js": [
"assets\/extension.js"
],
"css": [
"assets\/extension.css"
],
"run_at": "document_end",
"all_frames": true
}
],
"action": {
"default_popup": "popup.html"
},
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"fonts\/Roboto-Regular.ttf",
"assets\/popup.js",
"assets\/popup.css",
"images\/search_icon.svg",
"images\/youtube_logo.png",
"images\/search_icon_dark.svg",
"images\/youtube_logo_dark.png",
"images\/extension_icon.png"
],
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
]
}
]
} | |