Netflex

Work out while you watch your favorite shows.

Что такое Netflex?

Netflex - это расширение Chrome, разработанное Netflex, и его основная функция - "Work out while you watch your favorite shows.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Netflex

Скачайте файлы расширений Netflex в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Feeling guilty about watching too much TV and getting too little exercise? Netflex gives you the best of both worlds.
 
With this free extension, you can watch any Netflix show while we coach you through simple bodyweight exercises in the corner of your screen.
 
We know, it’s genius. You’re welcome.                    

Основная информация о расширении

Название Netflex Netflex
ID hfanmigfcphpeagamjjombcbpgafhpkf
Официальный URL https://chromewebstore.google.com/detail/netflex/hfanmigfcphpeagamjjombcbpgafhpkf
Описание Work out while you watch your favorite shows.
Размер файла 871 KB
Количество установок 379
Текущая Версия 1.0.0
Последнее Обновление 2021-01-12
Дата публикации 2020-09-23
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Netflex
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://netflexandsweat.com/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflex",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "Work out while you watch your favorite shows.",
    "permissions": [
        "*:\/\/*.netflix.com\/*",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/netflex_icon16.png",
            "32": "icons\/netflex_icon32.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "css": [
                "css\/index.css"
            ],
            "js": [
                "js\/index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "js\/netflix.js"
    ],
    "icons": {
        "16": "icons\/netflex_icon16.png",
        "32": "icons\/netflex_icon32.png",
        "48": "icons\/netflex_icon48.png",
        "128": "icons\/netflex_icon128.png"
    }
}