Focused Youtube
Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube
Hvad er Focused Youtube?
Focused Youtube er en Chrome-udvidelse udviklet af makaroni4, og dens hovedfunktion er "Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube".
Udvidelsesskærmbilleder
Download Focused Youtube-udvidelses-CRX-fil
Download Focused Youtube-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
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | nfghbmabdoakhobmimnjkamfdnpfammn |
| Officiel URL | https://chromewebstore.google.com/detail/focused-youtube/nfghbmabdoakhobmimnjkamfdnpfammn |
| Beskrivelse | Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube |
| Filstørrelse | 170 KB |
| Antal Installationer | 4,232 |
| Nuværende Version | 1.12 |
| Senest Opdateret | 2024-01-27 |
| Udgivelsesdato | 2019-01-06 |
| Bedømmelse | 4.88/5 Samlet 72 Bedømmelser |
| Udvikler | makaroni4 |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/makaroni4/focused_youtube |
| Hjælpeside-URL | https://github.com/makaroni4/focused_youtube/issues |
| Understøttede Sprog | 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\/*"
]
}
]
} | |