ShuffleFlix - Netflix Random Episode Button

This chrome extension adds a random episode button to Netflix.

ShuffleFlix - Netflix Random Episode Button란 무엇입니까?

ShuffleFlix - Netflix Random Episode Button은(는) https://www.flixed.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This chrome extension adds a random episode button to Netflix."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ShuffleFlix - Netflix Random Episode Button 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Here's how you use ShuffleFlix.

1.  Install the extension.
2. Click on any TV show. Next to "Episodes" you should see a "Random Episode" button.
3. If you're in the middle of playing an episode, you'll se a new button in the bottom right corner of the screen. It should look like two twin arrows. Click it, and you can switch to a random episode from there too.

Enjoy!

Developed by Flixed.io - A one-stop shop for learning about streaming and cord-cutting.                    

확장 프로그램 기본 정보

이름 ShuffleFlix - Netflix Random Episode Button ShuffleFlix - Netflix Random Episode Button
ID copfkimibpnfpdggfjencnehgfgmpphf
공식 URL https://chromewebstore.google.com/detail/shuffleflix-netflix-rando/copfkimibpnfpdggfjencnehgfgmpphf
설명 This chrome extension adds a random episode button to Netflix.
파일 크기 423 KB
설치 횟수 1,659
현재 버전 1.0.0
최근 업데이트 2019-06-16
출시 날짜 2019-06-16
평점 3.72/5 총 18 개의 평점
개발자 https://www.flixed.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://flixed.io
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ShuffleFlix - Netflix Random Episode Button",
    "version": "1.0.0",
    "version_name": "1.0.0",
    "description": "This chrome extension adds a random episode button to Netflix.",
    "icons": {
        "128": "\/img\/logo.png"
    },
    "browser_action": {
        "default_icon": "\/img\/logo.png",
        "default_popup": "\/pages\/popup\/index.html"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "js": [
                "\/js\/main_content_script.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/www.netflix.com\/*"
    ],
    "web_accessible_resources": [
        "\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/connect.facebook.net; object-src 'self'"
}