YouTube Zoomer
Easily zoom on YouTube videos, with a simple scroll
Wat is YouTube Zoomer?
YouTube Zoomer is een Chrome-extensie ontwikkeld door teyzer18, en de belangrijkste functie is "Easily zoom on YouTube videos, with a simple scroll".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Zoomer
Download YouTube Zoomer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
With this extension, you can easily zoom on YouTube videos. It can be useful to seek for something particular in a video, something you have some difficulties to see, or to resize the format of the theater mode.
Basisinformatie over de Extensie
Naam | YouTube Zoomer |
ID | bgdkkdnidmmakdgebkgaeijbfkhieejn |
Officiële URL | https://chromewebstore.google.com/detail/youtube-zoomer/bgdkkdnidmmakdgebkgaeijbfkhieejn |
Beschrijving | Easily zoom on YouTube videos, with a simple scroll |
Bestandsgrootte | 13.8 KB |
Aantal Installaties | 1,623 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2020-08-23 |
Publicatiedatum | 2020-08-23 |
Beoordeling | 3.05/5 Totaal 20 Beoordelingen |
Ontwikkelaar | teyzer18 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0", "name": "YouTube Zoomer", "description": "Easily zoom on YouTube videos, with a simple scroll", "background": { "persistent": false, "scripts": [ "background\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content\/injection.js" ] } ], "browser_action": { "default_popup": "popup\/popup.html", "default_icon": "icons\/icon.png" }, "permissions": [ "storage", "activeTab", "*:\/\/*.youtube.com\/*", "background" ] } |