Randflix - Random Episodes For Netflix

Adds a shuffle button to play a random episode of a given show.

什麼是Randflix - Random Episodes For Netflix?

Randflix - Random Episodes For Netflix是由Susan Chen開發的Chrome擴展程式,該擴展的主要功能是“Adds a shuffle button to play a random episode of a given show.”。

擴展截圖

screenshot
screenshot

下載Randflix - Random Episodes For Netflix擴展crx文件

下載Randflix - Random Episodes For Netflix擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A handy chrome extension for those who have seen their favourite shows on Netflix way too many times. Randflix allows you to randomize episode playback of a given TV show.

When choosing an episode becomes arduous, just turn to Randflix to make the choice for you!

https://github.com/bzvikler/netflix-randomizer                    

擴展基本資訊

名稱 Randflix - Random Episodes For Netflix Randflix - Random Episodes For Netflix
ID enjakkkpkgpcnjbmagjgkccljfimgbhh
官方網址 https://chromewebstore.google.com/detail/randflix-random-episodes/enjakkkpkgpcnjbmagjgkccljfimgbhh
簡介 Adds a shuffle button to play a random episode of a given show.
檔案大小 48.98 KB
安裝次數 179
目前版本 1.2
更新時間 2020-03-27
上架時間 2020-03-27
評分 3.00/5 共 4 次評分
開發者 Susan Chen
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://github.com/bzvikler/netflix-randomizer
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Randflix - Random Episodes For Netflix",
    "version": "1.2",
    "description": "Adds a shuffle button to play a random episode of a given show.",
    "permissions": [],
    "page_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "contentScript.js"
            ],
            "all_frames": true
        }
    ]
}