Reverse Youtube
Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.
Co to jest Reverse Youtube?
Reverse Youtube to rozszerzenie Chrome opracowane przez https://citadelle-du-web.com, a jego główną funkcją jest „Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Reverse Youtube
Pobierz pliki rozszerzeń Reverse Youtube 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
This extension swaps 'primary video' and 'related contents' layouts in youtube.com
Podstawowe informacje o rozszerzeniu
Nazwa | Reverse Youtube |
ID | bbkebkkkocmacciojigkliggadljbmai |
Oficjalny URL | https://chromewebstore.google.com/detail/reverse-youtube/bbkebkkkocmacciojigkliggadljbmai |
Opis | Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts. |
Rozmiar pliku | 53.5 KB |
Liczba instalacji | 583 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2021-03-05 |
Data Publikacji | 2021-03-04 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | https://citadelle-du-web.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://citadelle-du-web.com/projects/reverse-youtube |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0", "name": "Reverse Youtube", "description": "Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.", "permissions": [ "storage" ], "browser_action": { "default_title": "Reverse Youtube", "default_popup": "popup.html", "default_icon": { "16": "images\/logo-16.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "images\/logo-16.png", "32": "images\/logo-32.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" } } |