KickKit
Extension for Kick to enhance the experience with some utilities.
Vad är KickKit?
KickKit är en Chrome-tillägg utvecklad av soruse, och dess huvudfunktion är "Extension for Kick to enhance the experience with some utilities.".
Tilläggsskärmbilder
Ladda ner KickKit-förlängningens CRX-fil
Ladda ner KickKit-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
KickKit provides utility options for kick.com streaming platform.
For now it can:
- display images linked directly in the chat
- blur the images first, and then reveal them by hovering
- display basic information about youtube/streamable videos
- toggle visibility of top gifters/quick emote holder
More stuff coming soon! Grundläggande Information om Tillägg
| Namn | |
| ID | hbfobpefgbdlfgllfpdemkkfldejdkdk |
| Officiell webbadress | https://chromewebstore.google.com/detail/kickkit/hbfobpefgbdlfgllfpdemkkfldejdkdk |
| Beskrivning | Extension for Kick to enhance the experience with some utilities. |
| Filstorlek | 81.93 KB |
| Antal Installationer | 69 |
| Aktuell Version | 1.1.1 |
| Senast Uppdaterad | 2023-08-08 |
| Publiceringsdatum | 2023-07-25 |
| Betyg | 5.00/5 Totalt 3 Betyg |
| Utvecklare | soruse |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://kickkit.vercel.app/ |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "KickKit",
"version": "1.1.1",
"description": "Extension for Kick to enhance the experience with some utilities.",
"host_permissions": [
"*:\/\/*.kick.com\/*"
],
"permissions": [
"scripting"
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"content_script.js",
"kk_styles.css"
],
"matches": [
"https:\/\/*.kick.com\/*"
]
}
],
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
} | |