YouTube Repeat Button
YouTube Repeat Button.
Co to jest YouTube Repeat Button?
YouTube Repeat Button to rozszerzenie Chrome opracowane przez Vladislav Tupikin, a jego główną funkcją jest „YouTube Repeat Button.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube Repeat Button
Pobierz pliki rozszerzeń YouTube Repeat Button 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
Google Chrome extension that embeds a video repeat button directly into the YouTube player
Podstawowe informacje o rozszerzeniu
Nazwa | YouTube Repeat Button |
ID | mpaeilkfigmkompknfmmnojgkbkahfdk |
Oficjalny URL | https://chromewebstore.google.com/detail/youtube-repeat-button/mpaeilkfigmkompknfmmnojgkbkahfdk |
Opis | YouTube Repeat Button. |
Rozmiar pliku | 15.33 KB |
Liczba instalacji | 394 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2021-01-05 |
Data Publikacji | 2019-12-20 |
Ocena | 3.00/5 Łącznie 4 Oceny |
Deweloper | Vladislav Tupikin |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/MrRefactoring/youtube-repeat |
Obsługiwane Języki | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "1.0.0", "default_locale": "en", "icons": { "16": "src\/images\/icons\/icon16.png", "48": "src\/images\/icons\/icon48.png", "128": "src\/images\/icons\/icon128.png" }, "content_scripts": [ { "run_at": "document_end", "css": [ "src\/styles.css" ], "js": [ "src\/helpers\/onElementHeightChange.js", "src\/helpers\/onRepeatClick.js", "src\/helpers\/removeTitle.js", "src\/helpers\/resetTitle.js", "src\/helpers\/createButton.js", "src\/helpers\/patcher.js", "src\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "scripts": [ "src\/background.js" ] }, "permissions": [ "tabs" ] } |