veefeed

Keep track of your YouTube and Twitch subscriptions

Τι είναι το veefeed;

Το veefeed είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον fent, και η κύρια λειτουργία του είναι "Keep track of your YouTube and Twitch subscriptions".

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

screenshot
screenshot

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

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

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

                        Do you find yourself following several channels on YouTube and/or Twitch? Do you miss the days when YouTube allowed you to categorize your subscriptions?

* Supports YouTube and Twich
* Get notified when new videos are uploaded
* Auto organize your videos into groups based on patterns
* Ignore videos based on patterns
* Queue up videos to play when the current video ends

All of the features are optional. No need to authenticate or specify your username, just be logged in to the video websites that you enable.                    

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

Όνομα veefeed veefeed
ID elpfmfdcigaklhenpknoifgfcfnefkdf
Επίσημο URL https://chromewebstore.google.com/detail/veefeed/elpfmfdcigaklhenpknoifgfcfnefkdf
Περιγραφή Keep track of your YouTube and Twitch subscriptions
Μέγεθος Αρχείου 1.56 MB
Αριθμός Εγκαταστάσεων 26
Τρέχουσα Έκδοση 0.10.5
Τελευταία Ενημέρωση 2022-01-17
Ημερομηνία Δημοσίευσης 2019-07-11
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής fent
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/fent/chrome-veefeed
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/fent/chrome-veefeed/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "veefeed",
    "version": "0.10.5",
    "description": "Keep track of your YouTube and Twitch subscriptions",
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "icons": {
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "https:\/\/www.twitch.tv\/",
        "https:\/\/api.twitch.tv\/",
        "https:\/\/www.youtube.com\/",
        "https:\/\/haloruns.z20.web.core.windows.net\/content\/feeds\/latestRecords.json",
        "https:\/\/www.speedrun.com\/",
        "https:\/\/t.co\/",
        "contextMenus",
        "cookies",
        "notifications",
        "storage"
    ],
    "author": "fent (https:\/\/github.com\/fent)",
    "background": {
        "page": "background\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/watch?*v=*"
            ],
            "js": [
                "util\/time.js",
                "util\/hyperscript.js",
                "content\/shared.js",
                "content\/youtube.js"
            ],
            "css": [
                "content\/style.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.twitch.tv\/videos\/*"
            ],
            "js": [
                "util\/time.js",
                "util\/hyperscript.js",
                "content\/shared.js",
                "content\/twitch.js"
            ],
            "css": [
                "content\/style.css"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    }
}