Youtube Assistant

Chat with any video on youtube

Τι είναι το Youtube Assistant;

Το Youtube Assistant είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kitesdev, και η κύρια λειτουργία του είναι "Chat with any video on youtube".

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

screenshot
screenshot

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

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

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

                        Introducing the "YouTube Assistant" Chrome extension, the ultimate tool for getting the most out of any YouTube video. With this advanced AI-powered extension, you'll have access to an unprecedented level of information and insights about the videos you watch.

This plugin can literally answer any question about a video. Simply connect your own OpenAI API key and you are ready to use it. 

Purchase the Source Code from here: 
https://kitesdev.gumroad.com/l/youtubassistant                    

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

Όνομα Youtube Assistant Youtube Assistant
ID hjgdomehmbbnamplldiennbamkiiomge
Επίσημο URL https://chromewebstore.google.com/detail/youtube-assistant/hjgdomehmbbnamplldiennbamkiiomge
Περιγραφή Chat with any video on youtube
Μέγεθος Αρχείου 73.88 KB
Αριθμός Εγκαταστάσεων 34
Τρέχουσα Έκδοση 0.0.0.1
Τελευταία Ενημέρωση 2023-04-27
Ημερομηνία Δημοσίευσης 2023-04-04
Προγραμματιστής kitesdev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://kites.dev/youtube-assistant/
Διεύθυνση URL της Σελίδας Βοήθειας https://kites.dev/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Assistant",
    "description": "Chat with any video on youtube",
    "version": "0.0.0.1",
    "icons": {
        "16": "\/images\/16.png",
        "32": "\/images\/32.png",
        "48": "\/images\/48.png",
        "128": "\/images\/128.png"
    },
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/youtube.com\/*"
            ],
            "js": [
                "injector.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "he.min.js"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/youtube.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/16.png",
            "32": "\/images\/32.png",
            "48": "\/images\/48.png",
            "128": "\/images\/128.png"
        }
    }
}