Twitch No Unfollow
Hide the unfollow button for Twitch streamers you follow.
Vad är Twitch No Unfollow?
Twitch No Unfollow är en Chrome-tillägg utvecklad av uvanchang, och dess huvudfunktion är "Hide the unfollow button for Twitch streamers you follow.".
Tilläggsskärmbilder
Ladda ner Twitch No Unfollow-förlängningens CRX-fil
Ladda ner Twitch No Unfollow-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
This extension allows you to hide/unhide the Twitch unfollow button so you never accidentally unfollow your favorite streamer again. Click on the extension icon in the extension list to bring up a checkbox to toggle the button hiding. Grundläggande Information om Tillägg
| Namn | |
| ID | mjlmkodinifanpmmkgoilihnhmjhdcla |
| Officiell webbadress | https://chromewebstore.google.com/detail/twitch-no-unfollow/mjlmkodinifanpmmkgoilihnhmjhdcla |
| Beskrivning | Hide the unfollow button for Twitch streamers you follow. |
| Filstorlek | 15.98 KB |
| Antal Installationer | 243 |
| Aktuell Version | 1.1.0 |
| Senast Uppdaterad | 2023-04-01 |
| Publiceringsdatum | 2020-12-15 |
| Betyg | 5.00/5 Totalt 3 Betyg |
| Utvecklare | uvanchang |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twitch No Unfollow",
"version": "1.1.0",
"description": "Hide the unfollow button for Twitch streamers you follow.",
"manifest_version": 3,
"permissions": [
"storage"
],
"background": {
"service_worker": "src\/background.js"
},
"content_scripts": [
{
"js": [
"src\/channel.js"
],
"matches": [
"*:\/\/www.twitch.tv\/*"
]
}
],
"action": {
"default_popup": "src\/views\/options.html",
"default_icon": "assets\/icons\/icon-128.png"
},
"icons": {
"128": "assets\/icons\/icon-128.png"
}
} | |