ShuffleFlix - Netflix Random Episode Button

This chrome extension adds a random episode button to Netflix.

ShuffleFlix - Netflix Random Episode Button là gì?

ShuffleFlix - Netflix Random Episode Button là một tiện ích mở rộng Chrome được phát triển bởi https://www.flixed.io, và tính năng chính của nó là "This chrome extension adds a random episode button to Netflix.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ShuffleFlix - Netflix Random Episode Button

Tải xuống các tệp mở rộng ShuffleFlix - Netflix Random Episode Button dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ShuffleFlix - Netflix Random Episode Button ShuffleFlix - Netflix Random Episode Button
ID copfkimibpnfpdggfjencnehgfgmpphf
URL Chính Thức https://chromewebstore.google.com/detail/shuffleflix-netflix-rando/copfkimibpnfpdggfjencnehgfgmpphf
Mô tả This chrome extension adds a random episode button to Netflix.
Kích Thước Tệp 423 KB
Số Lần Cài Đặt 1,659
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2019-06-16
Ngày Phát Hành 2019-06-16
Đánh Giá 3.72/5 Tổng số 18 Đánh Giá
Nhà Phát Triển https://www.flixed.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://flixed.io
Ngôn Ngữ Được Hỗ Trợ 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'"
}