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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.flixed.io และคุณลักษณะหลักของมันคือ "This chrome extension adds a random episode button to Netflix."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ShuffleFlix - Netflix Random Episode Button

ดาวน์โหลดไฟล์ส่วนขยาย ShuffleFlix - Netflix Random Episode Button ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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