ttv-favorites

enables favorites on Twitch.tv

Τι είναι το ttv-favorites;

Το ttv-favorites είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://portals.sh, και η κύρια λειτουργία του είναι "enables favorites on Twitch.tv".

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

screenshot

Λήψη αρχείου CRX της επέκτασης ttv-favorites

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

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

                        - features::
    - star followed channels to keep track of your favorites
    - view all favorites in the extension icon popup
    - adds a "favorite channels" section in the sidebar of Twitch.tv for 
      distinction / awareness / easier access to smaller channels
- note::
    - the left sidebar on Twitch.tv must be expanded for this extension to work
    - favorites are synced to your browser account, not your Twitch 
      account
    - you cannot favorite more than 511 channels                    

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

Όνομα ttv-favorites ttv-favorites
ID ehbgkeiljpignaickbblnbfkhfeemmme
Επίσημο URL https://chrome.google.com/webstore/detail/ttv-favorites/ehbgkeiljpignaickbblnbfkhfeemmme
Περιγραφή enables favorites on Twitch.tv
Μέγεθος Αρχείου 7.04 MB
Αριθμός Εγκαταστάσεων 155
Τρέχουσα Έκδοση 1.2.16
Τελευταία Ενημέρωση 2022-11-28
Ημερομηνία Δημοσίευσης 2022-04-21
Αξιολόγηση 5.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής http://portals.sh
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/jc9108/ttv-favorites
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/jc9108/ttv-favorites/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "jc9108",
    "name": "ttv-favorites",
    "description": "enables favorites on Twitch.tv",
    "homepage_url": "https:\/\/github.com\/jc9108\/ttv-favorites",
    "version": "1.2.16",
    "manifest_version": 3,
    "icons": {
        "16": ".\/images\/icon_16.png",
        "32": ".\/images\/icon_32.png",
        "48": ".\/images\/icon_48.png",
        "128": ".\/images\/icon_128.png"
    },
    "action": {
        "default_icon": {
            "16": ".\/images\/icon_16.png",
            "24": ".\/images\/icon_24.png",
            "32": ".\/images\/icon_32.png"
        },
        "default_title": "ttv-favorites",
        "default_popup": ".\/popup\/popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ],
    "background": {
        "type": "module",
        "service_worker": ".\/build\/background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "exclude_matches": [
                "https:\/\/www.twitch.tv\/downloads\/*",
                "https:\/\/www.twitch.tv\/jobs\/*",
                "https:\/\/www.twitch.tv\/moderator\/*",
                "https:\/\/www.twitch.tv\/p\/*",
                "https:\/\/www.twitch.tv\/popout\/*",
                "https:\/\/www.twitch.tv\/store\/*",
                "https:\/\/www.twitch.tv\/team\/*",
                "https:\/\/www.twitch.tv\/turbo\/*"
            ],
            "js": [
                ".\/build\/foreground.js"
            ],
            "css": [
                ".\/foreground\/foreground.css"
            ]
        }
    ]
}