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"
    }
}