YouTube Row Fixer
The chrome extension for Increasing the videos per row.
Co to jest YouTube Row Fixer?
YouTube Row Fixer to rozszerzenie Chrome opracowane przez sapondanaisriwan, a jego główną funkcją jest „The chrome extension for Increasing the videos per row.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube Row Fixer
Pobierz pliki rozszerzeń YouTube Row Fixer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | YouTube Row Fixer |
ID | kehjfphhkfppnnjhdfhanmehkegdppho |
Oficjalny URL | https://chromewebstore.google.com/detail/youtube-row-fixer/kehjfphhkfppnnjhdfhanmehkegdppho |
Opis | The chrome extension for Increasing the videos per row. |
Rozmiar pliku | 70.62 KB |
Liczba instalacji | 809 |
Aktualna Wersja | 1.0.4 |
Ostatnia Aktualizacja | 2023-12-03 |
Data Publikacji | 2023-06-03 |
Ocena | 4.41/5 Łącznie 27 Oceny |
Deweloper | sapondanaisriwan |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/sapondanaisriwan/youtube-row-fixer |
Adres URL Strony Pomocy | https://github.com/sapondanaisriwan/youtube-row-fixer/issues |
Obsługiwane Języki | 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" } } |