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은(는) rohan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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

EpisodeBrain: AI Episode Tracker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}