Youtube Study Mode
No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.
Vad är Youtube Study Mode?
Youtube Study Mode är en Chrome-tillägg utvecklad av zkjiang12, och dess huvudfunktion är "No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.".
Tilläggsskärmbilder
Ladda ner Youtube Study Mode-förlängningens CRX-fil
Ladda ner Youtube Study Mode-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
Finish your work faster by being less distracted on Youtube. Instead of the Youtube home page being filled with distracting videos, it's only a search bar. When watching a video the recommendations are also hidden. This way you won't accidentally get distracted and spend hours watching videos. Instead, this will help you quickly finish work so you can enjoy free time.
Grundläggande Information om Tillägg
Namn | Youtube Study Mode |
ID | phkgjapblkjghdpbnbkjphgjploajonl |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-study-mode/phkgjapblkjghdpbnbkjphgjploajonl |
Beskrivning | No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode. |
Filstorlek | 172 KB |
Antal Installationer | 121 |
Aktuell Version | 3.1.1 |
Senast Uppdaterad | 2023-08-29 |
Publiceringsdatum | 2023-07-05 |
Betyg | 5.00/5 Totalt 7 Betyg |
Utvecklare | zkjiang12 |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Study Mode", "version": "3.1.1", "manifest_version": 3, "description": "No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.", "icons": { "16": "\/icon.png", "32": "\/icon.png", "48": "\/icon.png", "128": "\/icon.png" }, "action": { "default_icon": { "16": "\/icon.png", "32": "\/icon.png", "48": "\/icon.png", "128": "\/icon.png" } }, "background": { "service_worker": "\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "\/yt.js" ], "css": [ "\/style.css" ] } ], "web_accessible_resources": [ { "resources": [ "logo.png", "stars.png" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ] } |