Twitch Hide Followed Channel

Twitch: hide a channel from the followed channels column.

Τι είναι το Twitch Hide Followed Channel;

Το Twitch Hide Followed Channel είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jmt, και η κύρια λειτουργία του είναι "Twitch: hide a channel from the followed channels column.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Twitch Hide Followed Channel

Λήψη αρχείων επέκτασης Twitch Hide Followed Channel σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Have you followed someone on Twitch but you don't really care about their streams? You don't even want to see them in the list of the channels you follow? Well, you shouldn't be so mean... but this extension can hide those channels for you! 

Every channel you choose (as shown in the first screenshot) won't appear anymore in the column of followed channels. Although it will show in any other place where it would normally appear. In the extension's pop-up, channels can be added back to the column by clicking on their names (second screenshot). Also, channels can be hidden from the pop-up if their names are typed in its text field. You can watch a demo of the extension here: https://youtu.be/GHzBn0DG8fA.

Code: https://github.com/jmt-chromeextensions/TwitchHideFollowedChannel. This extension has some interesting features that are worth taking a look at, like the use of MutationObserver (https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver) to notice when some channel has started a new stream and it has been added to the live channels div, or the background-content-pop-up messagging. 

FYI: Extensions are not activated automatically when they are installed. This extension, like many others you have tried probably, starts working on all the corresponding tabs at the right moment it is installed, but this is not the default behaviour. Take in mind that if you install an extension sometime and it doesn't work on the tabs you have already open, you may need to refresh those tabs with F5 key or by clicking on the reload button located in the browser's top left corner.

❓ Questions to think about: What is the value of a follow? How did Twitch devs know that I was going to follow more people now that followed channels are not pubicly displayed? Does a lot of people look at other people's followed channels? 🤔                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Twitch Hide Followed Channel Twitch Hide Followed Channel
ID fdnoeedebfddngeggchilhfjbnnipadj
Επίσημο URL https://chromewebstore.google.com/detail/twitch-hide-followed-chan/fdnoeedebfddngeggchilhfjbnnipadj
Περιγραφή Twitch: hide a channel from the followed channels column.
Μέγεθος Αρχείου 144 KB
Αριθμός Εγκαταστάσεων 223
Τρέχουσα Έκδοση 2.0.0.0
Τελευταία Ενημέρωση 2023-07-23
Ημερομηνία Δημοσίευσης 2020-06-02
Αξιολόγηση 4.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής jmt
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/jmt-chromeextensions/TwitchHideFollowedChannel
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch Hide Followed Channel",
    "short_name": "TTVHideFollowedChannel",
    "version": "2.0.0.0",
    "description": "Twitch: hide a channel from the followed channels column.",
    "icons": {
        "16": "extension_icons\/ttvhidefollowedchannel-16.png",
        "32": "extension_icons\/ttvhidefollowedchannel-32.png",
        "48": "extension_icons\/ttvhidefollowedchannel-48.png",
        "128": "extension_icons\/ttvhidefollowedchannel-128.png"
    },
    "action": {
        "default_title": "Hidden Twitch followed channels",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background_scripts\/initialize_extension__hide_context_menu.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "jquery\/jquery-3.4.1.min.js",
                "jquery\/jquery-ui.min.js",
                "content_scripts\/utils\/utils.js",
                "content_scripts\/hide_channel.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*\/*",
        "contextMenus",
        "storage",
        "tabs",
        "https:\/\/*.twitch.tv\/*",
        "https:\/\/*.cactus.tools\/*"
    ]
}