Netflex

Work out while you watch your favorite shows.

什麼是Netflex?

Netflex是由Netflex開發的Chrome擴展程式,該擴展的主要功能是“Work out while you watch your favorite shows.”。

擴展截圖

screenshot
screenshot
screenshot

下載Netflex擴展crx文件

下載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
官方網址 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"
    }
}