Darker Discord Theme
When clicked, it changes discord into a 'light out' theme similar to twitter
Co to jest Darker Discord Theme?
Darker Discord Theme to rozszerzenie Chrome opracowane przez DevStoreMaker, a jego główną funkcją jest „When clicked, it changes discord into a 'light out' theme similar to twitter”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Darker Discord Theme
Pobierz pliki rozszerzeń Darker Discord Theme 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
Darker Discord Theme is exactly what it claims to be, an extension that when clicked, will turn discord dark, into an even darker discord, which is similar to twitter's "lights out" theme.
Podstawowe informacje o rozszerzeniu
Nazwa | ![]() |
ID | ghpfgannonidbjlgnooidbjaekginfam |
Oficjalny URL | https://chrome.google.com/webstore/detail/darker-discord-theme/ghpfgannonidbjlgnooidbjaekginfam |
Opis | When clicked, it changes discord into a 'light out' theme similar to twitter |
Rozmiar pliku | 202 KB |
Liczba instalacji | 504 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2019-10-06 |
Data Publikacji | 2019-10-06 |
Ocena | 2.67/5 Łącznie 12 Oceny |
Deweloper | DevStoreMaker |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Darker Discord Theme", "version": "1.0", "description": "When clicked, it changes discord into a 'light out' theme similar to twitter", "manifest_version": 2, "permissions": [ "https:\/\/discordapp.com\/*" ], "browser_action": { "default_icon": "logo.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/discordapp.com\/*" ], "js": [ "background.js" ] } ], "web_accessible_resources": [ "betterDiscord.css" ] } |