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
公式URL 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
Eメール [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
        }
    ]
}