EpisodeBrain: AI Episode Tracker

Stop worrying about episode numbers and links for what you're watching, we'll keep track of it for you using AI.

Τι είναι το EpisodeBrain: AI Episode Tracker;

Το EpisodeBrain: AI Episode Tracker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rohan, και η κύρια λειτουργία του είναι "Stop worrying about episode numbers and links for what you're watching, we'll keep track of it for you using AI.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης EpisodeBrain: AI Episode Tracker

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

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

                        EpisodeBrain gives you the ability to continue watching your favorites series from where you left off on 3rd party streaming websites, without the hassle of investigating through your browser history. Keep enjoying content, and forget remembering numbers and links. In other words, never forget what episode you last watched or where you watched it! 

EpisodeBrain uses AI to quickly scan the website you're watching your show on, to figure out what show you're watching and episode you're on. This lets you jump right back into the show when you're ready to watch again.

How?

1. Go to your streaming website*
2. Start watching your show!
3. Click the 'Add Website' button

That's it! You should see your show popup in the extension where we will automatically track it moving forward. 

If you show doesn't appear right after adding it, we might not support the website yet.

**Does not support major streaming sites yet i.e. Netflix, Hulu, Max, Amazon Prime **

**Supported websites include: CrunchyRoll, 9anime, Solarmovie, Soap2day, Watchseries, YesMovies with more being added weekly!**                    

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

Όνομα EpisodeBrain: AI Episode Tracker EpisodeBrain: AI Episode Tracker
ID mpjipbifliimiidlkbnhbnlfpoaobcem
Επίσημο URL https://chromewebstore.google.com/detail/episodebrain-ai-episode-t/mpjipbifliimiidlkbnhbnlfpoaobcem
Περιγραφή Stop worrying about episode numbers and links for what you're watching, we'll keep track of it for you using AI.
Μέγεθος Αρχείου 6.43 MB
Αριθμός Εγκαταστάσεων 305
Τρέχουσα Έκδοση 3.21
Τελευταία Ενημέρωση 2024-01-11
Ημερομηνία Δημοσίευσης 2018-03-30
Αξιολόγηση 4.50/5 Συνολικά 14 Αξιολογήσεις
Προγραμματιστής rohan
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/rkanjani/EpisodeBrain/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "EpisodeBrain: AI Episode Tracker",
    "description": "Stop worrying about episode numbers and links for what you're watching, we'll keep track of it for you using AI.",
    "version": "3.21",
    "icons": {
        "128": "images\/icon.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "bower_components\/fonts\/*.woff2"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "scripting",
        "offscreen"
    ],
    "host_permissions": [
        "https:\/\/ajax.googleapis.com\/",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/",
                "https:\/\/*\/"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "bower_components\/angular\/angular.min.js",
                "popup.js",
                "domgrabber.js",
                "bower_components\/angular-xeditable\/dist\/js\/xeditable.min.js",
                "analytics-override.js",
                "offscreen.js"
            ],
            "run_at": "document_end"
        }
    ]
}