YouTube Focus Mode
Hides recommendations and comments from YouTube videos to help you focus, and prevents you from browsing.
Hvad er YouTube Focus Mode?
YouTube Focus Mode er en Chrome-udvidelse udviklet af annaazzam, og dens hovedfunktion er "Hides recommendations and comments from YouTube videos to help you focus, and prevents you from browsing.".
Udvidelsesskærmbilleder
Download YouTube Focus Mode-udvidelses-CRX-fil
Download YouTube Focus Mode-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
Hides recommendations and comments from YouTube videos to help you focus, and prevents you from browsing. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | aiickpjplakbajmoglephfflijahgblj |
| Officiel URL | https://chromewebstore.google.com/detail/youtube-focus-mode/aiickpjplakbajmoglephfflijahgblj |
| Beskrivelse | Hides recommendations and comments from YouTube videos to help you focus, and prevents you from browsing. |
| Filstørrelse | 8.73 KB |
| Antal Installationer | 617 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2020-06-28 |
| Udgivelsesdato | 2020-06-27 |
| Bedømmelse | 4.95/5 Samlet 21 Bedømmelser |
| Udvikler | annaazzam |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Focus Mode",
"description": "",
"version": "1.0",
"browser_action": {
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"extension.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.js"
]
}
} | |