Reactify-XQC
Modify YouTube thumbnails to include XQC and add a reaction box to the video player
Co to jest Reactify-XQC?
Reactify-XQC to rozszerzenie Chrome opracowane przez zachariahjweaver, a jego główną funkcją jest „Modify YouTube thumbnails to include XQC and add a reaction box to the video player”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Reactify-XQC
Pobierz pliki rozszerzeń Reactify-XQC 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
Extension Adds XQC to the thumbnails on YouTube and adds a reaction box with clips of XQC reacting to the corner of the video player.
Credit to MagicJinn, adapted from this project:
https://github.com/MagicJinn/MrBeastify-Youtube Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | npcoeemhipfgjndclmjajdafflbdkgke |
| Oficjalny URL | https://chromewebstore.google.com/detail/reactify-xqc/npcoeemhipfgjndclmjajdafflbdkgke |
| Opis | Modify YouTube thumbnails to include XQC and add a reaction box to the video player |
| Rozmiar pliku | 15.87 MB |
| Liczba instalacji | 267 |
| Aktualna Wersja | 1.1 |
| Ostatnia Aktualizacja | 2023-08-13 |
| Data Publikacji | 2023-08-10 |
| Ocena | 4.92/5 Łącznie 13 Oceny |
| Deweloper | zachariahjweaver |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Reactify-XQC",
"version": "1.1",
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"64": "icons\/icon-64.png",
"96": "icons\/icon-96.png"
},
"description": "Modify YouTube thumbnails to include XQC and add a reaction box to the video player",
"host_permissions": [
"https:\/\/www.youtube.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"reactify-XQC.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"images\/*.png",
"images\/*.json",
"images\/*.gif",
"videos\/*.mp4"
],
"matches": [
"*:\/\/*\/*"
]
}
]
} | |