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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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