YouTube Row Fixer
The chrome extension for Increasing the videos per row.
Co je YouTube Row Fixer?
YouTube Row Fixer je rozšíření Chrome vyvinuté sapondanaisriwan, a jeho hlavní funkcí je „The chrome extension for Increasing the videos per row.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření YouTube Row Fixer
Stáhněte si soubory rozšíření YouTube Row Fixer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
The chrome extension for Increasing the videos per row on all pages. Source Code: https://github.com/sapondanaisriwan/youtube-row-fixer Bug Report: https://github.com/sapondanaisriwan/youtube-row-fixer/issues
Základní Informace o Rozšíření
Název | YouTube Row Fixer |
ID | kehjfphhkfppnnjhdfhanmehkegdppho |
Oficiální URL | https://chromewebstore.google.com/detail/youtube-row-fixer/kehjfphhkfppnnjhdfhanmehkegdppho |
Popis | The chrome extension for Increasing the videos per row. |
Velikost souboru | 70.62 KB |
Počet instalací | 809 |
Aktuální Verze | 1.0.4 |
Poslední Aktualizace | 2023-12-03 |
Datum Vydání | 2023-06-03 |
Hodnocení | 4.41/5 Celkem 27 Hodnocení |
Vývojář | sapondanaisriwan |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/sapondanaisriwan/youtube-row-fixer |
URL Stránky Nápovědy | https://github.com/sapondanaisriwan/youtube-row-fixer/issues |
Podporované Jazyky | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Row Fixer", "description": "The chrome extension for Increasing the videos per row.", "version": "1.0.4", "permissions": [ "tabs", "storage" ], "action": { "default_popup": "popup.html" }, "icons": { "16": ".\/asset\/img\/icon-16.png", "32": ".\/asset\/img\/icon-32.png", "48": ".\/asset\/img\/icon-48.png", "64": ".\/asset\/img\/icon-64.png", "128": ".\/asset\/img\/icon-128.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ ".\/variables.js", ".\/content-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "js\/main.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "service_worker": "background.js" } } |