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 - это расширение Chrome, разработанное Susan Chen, и его основная функция - "Adds a shuffle button to play a random episode of a given show.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Randflix - Random Episodes For Netflix

Скачайте файлы расширений 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
Электронная почта [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
        }
    ]
}