Twitch No Unfollow

Hide the unfollow button for Twitch streamers you follow.

What is Twitch No Unfollow?

Twitch No Unfollow is a Chrome extension developed by uvanchang, and its main feature is "Hide the unfollow button for Twitch streamers you follow.".

Extension Screenshots

screenshot
screenshot

Download Twitch No Unfollow Extension CRX File

Download Twitch No Unfollow extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Twitch No Unfollow Twitch No Unfollow
ID mjlmkodinifanpmmkgoilihnhmjhdcla
Official URL https://chromewebstore.google.com/detail/twitch-no-unfollow/mjlmkodinifanpmmkgoilihnhmjhdcla
Description Hide the unfollow button for Twitch streamers you follow.
File Size 15.98 KB
Installation Count 243
Current Version 1.1.0
Last Updated 2023-04-01
Publish Date 2020-12-15
Rating 5.00/5 Total 3 Ratings
Developer uvanchang
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}