StipsX
StipsX is an extension created to make your experience at Stips.co.il better by spicing up the look of it.
Co to jest StipsX?
StipsX to rozszerzenie Chrome opracowane przez StipsX, a jego główną funkcją jest „StipsX is an extension created to make your experience at Stips.co.il better by spicing up the look of it.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia StipsX
Pobierz pliki rozszerzeń StipsX 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
StipsX הוא תוסף הנועד לספק הרחבה למראה הנוכחי של אתר סטיפס על ידי הוספת ערכות נושא חדשות, מצב כהה ואנימציות.
Podstawowe informacje o rozszerzeniu
Nazwa | StipsX |
ID | aahjankbmcmbolobdconlbmgfddcjhjo |
Oficjalny URL | https://chromewebstore.google.com/detail/stipsx/aahjankbmcmbolobdconlbmgfddcjhjo |
Opis | StipsX is an extension created to make your experience at Stips.co.il better by spicing up the look of it. |
Rozmiar pliku | 69.8 KB |
Liczba instalacji | 88 |
Aktualna Wersja | 0.0.3 BETA |
Ostatnia Aktualizacja | 2021-10-03 |
Data Publikacji | 2021-09-28 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | StipsX |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://docs.google.com/forms/d/e/1FAIpQLSd_zSVerON66tvLSTAlIR0e-ueA4y4V5ueBOxb20sVwD8wTwQ/viewform |
Obsługiwane Języki | iw |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "StipsX", "description": "StipsX is an extension created to make your experience at Stips.co.il better by spicing up the look of it.", "author": "ShefelV", "version": "0.0.3", "version_name": "0.0.3 BETA", "manifest_version": 3, "background": { "service_worker": "scripts\/background.js" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" } } }, "permissions": [ "storage", "scripting", "tabs" ], "host_permissions": [ "https:\/\/stips.co.il\/*" ], "content_scripts": [ { "matches": [ "https:\/\/stips.co.il\/*" ], "css": [ "styles\/themes\/default-palette.css" ], "js": [ "scripts\/utils.js", "scripts\/stips.js" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon\/icon16.png", "24": "\/images\/icon\/icon24.png", "32": "\/images\/icon\/icon32.png", "48": "\/images\/icon\/icon48.png", "128": "\/images\/icon\/icon128.png" } }, "icons": { "16": "\/images\/icon\/icon16.png", "24": "\/images\/icon\/icon24.png", "32": "\/images\/icon\/icon32.png", "48": "\/images\/icon\/icon48.png", "128": "\/images\/icon\/icon128.png" }, "web_accessible_resources": [ { "resources": [ "styles\/themes\/dark.css", "styles\/themes\/bright.css", "scripts\/utils.js", "styles\/themes\/disable-animations.css", "palettes.json" ], "matches": [ "https:\/\/stips.co.il\/*" ] } ] } |