Start.gg Plus
Improvements to start.gg!
Co to jest Start.gg Plus?
Start.gg Plus to rozszerzenie Chrome opracowane przez cheesypotatodev, a jego główną funkcją jest „Improvements to start.gg!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Start.gg Plus
Pobierz pliki rozszerzeń Start.gg Plus 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
New features for the start.gg website! (recently renamed from smash.gg)
- Dark theme! Handcrafted for every page on the site, settings synced to your Google account
- Seed displays under all player names!
- Shortcut buttons to view your matches in bracket
And more to come! This extension is still in development, if you have ideas or feature requests please let me know at [email protected] Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | kpleddnadkfgfedphhciepmdlfehkgod |
| Oficjalny URL | https://chromewebstore.google.com/detail/startgg-plus/kpleddnadkfgfedphhciepmdlfehkgod |
| Opis | Improvements to start.gg! |
| Rozmiar pliku | 15.27 KB |
| Liczba instalacji | 961 |
| Aktualna Wersja | 1.4.1 |
| Ostatnia Aktualizacja | 2022-08-17 |
| Data Publikacji | 2022-01-06 |
| Ocena | 4.67/5 Łącznie 6 Oceny |
| Deweloper | cheesypotatodev |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Start.gg Plus",
"description": "Improvements to start.gg!",
"version": "1.4.1",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"webRequest",
"storage",
"scripting",
"activeTab"
],
"host_permissions": [
"https:\/\/www.start.gg\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/images\/logo16.png",
"32": "\/images\/logo32.png",
"48": "\/images\/logo48.png",
"128": "\/images\/logo128.png"
}
},
"icons": {
"16": "\/images\/logo16.png",
"32": "\/images\/logo32.png",
"48": "\/images\/logo48.png",
"128": "\/images\/logo128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.start.gg\/*"
],
"js": [
"content-script.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"style.css"
],
"matches": [
"https:\/\/www.start.gg\/*"
]
}
]
} | |