Random Episodes Generator

This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users).

Random Episodes Generator란 무엇입니까?

Random Episodes Generator은(는) Jasshtag에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users)."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Random Episodes Generator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        With this extension, users can play a random episode of The Simpsons, and The Office (among other series), because those series have a large catalog of episodes, users will be allowed to enjoy them without worrying of pick an episode.

The providers of the episodes are the platforms Disney + and Star + (for LATAM users), so subscriptions to that services are required to see the episodes and are not linked to this extension.

Now the extension autoplay another random episode instead of the next one.                    

확장 프로그램 기본 정보

이름 Random Episodes Generator Random Episodes Generator
ID cphgomachciegklpciofndoakgofgiea
공식 URL https://chromewebstore.google.com/detail/random-episodes-generator/cphgomachciegklpciofndoakgofgiea
설명 This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users).
파일 크기 772 KB
설치 횟수 134
현재 버전 0.9.3
최근 업데이트 2022-10-18
출시 날짜 2022-07-23
평점 5.00/5 총 6 개의 평점
개발자 Jasshtag
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Random Episodes Generator",
    "description": "This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users).",
    "version": "0.9.3",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs"
    ],
    "action": {
        "default_popup": "\/src\/episodes_generator\/popup.html",
        "default_icon": {
            "16": "\/images\/get_started16.png",
            "32": "\/images\/get_started32.png",
            "48": "\/images\/get_started48.png",
            "128": "\/images\/get_started128.png"
        }
    },
    "icons": {
        "16": "\/images\/get_started16.png",
        "32": "\/images\/get_started32.png",
        "48": "\/images\/get_started48.png",
        "128": "\/images\/get_started128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.starplus.com\/*\/video\/*",
                "*:\/\/www.disneyplus.com\/video\/*"
            ],
            "js": [
                "scripts\/random_helper.js",
                "scripts\/autoplay.js"
            ],
            "run_at": "document_end"
        }
    ]
}