Netflix Party

Install Netflix Party Chrome extension to watch Netflix in sync with your friends

Netflix Party란 무엇입니까?

Netflix Party은(는) https://netflixpartys.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Install Netflix Party Chrome extension to watch Netflix in sync with your friends"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Netflix Party 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Netflix Party is an amazing extension to sync & watch videos including TV Shows and Movies on Netflix.com.

INSTALLATION INSTRUCTIONS OF NETFLIX PARTY:

1. Click on “Add to Chrome” button.
2. Then, click on “Add Extension” button prompted on screen.
3. Click on “Puzzle” icon on right hand side of Chrome bar.
4. Pin the extension as it should be blue pin in front of the extension name “Netflix Party”.
5. Play the video on netflix.com and then click on extension icon to Create a Party.
6. Share the URL with your friend to join the party.

How to Join the Netflix Watch Party?

Open the shared link and make sure to ask your friend to install the extension on his/her device.

—————————————

You can sync and do group chat while enjoys shows on Netflix website.

Host or Join Watch Parties in order to watch Netflix videos together.

Send Emojis.

Enjoy Netflix Watch Party!

Disclaimer: Netflix Party is in no way affiliated with Netflix, Inc.

Version 1.0.12:
- Minor Improvements.

Version 1.0.11:
- Improvements.

Version 1.0.10:
- Improvements.

Version 1.0.9:
- Improvements.

Version 1.0.8:
- Bug Fixes And improvement.

Version 1.0.7:
- Minor Bug Fixes.

Version 1.0.6:
- Minor Fixes.

Version 1.0.5:
- Bug Fixes and Improvement.

Version 1.0.4:
- Code Changes.

Version 1.0.3:
- Minor Bug Fixes.

Version 1.0.2:
- Bug Fixes and Improvement.

Version 1.0.1:
- Added Multiple Languages.
- Minor Bug Fixes and Improvements.

Version 1.0.0 : 
- New Release.                    

확장 프로그램 기본 정보

이름 Netflix Party Netflix Party
ID djpbcgbfllffgmoedmonmjbaofikcnnc
공식 URL https://chromewebstore.google.com/detail/netflix-party/djpbcgbfllffgmoedmonmjbaofikcnnc
설명 Install Netflix Party Chrome extension to watch Netflix in sync with your friends
파일 크기 1.44 MB
설치 횟수 122,893
현재 버전 1.0.12
최근 업데이트 2024-01-22
출시 날짜 2022-04-30
평점 4.67/5 총 60 개의 평점
개발자 https://netflixpartys.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://netflixpartys.com/
도움말 페이지 URL https://netflixpartys.com/
개인정보 보호 정책 페이지 URL https://netflixpartys.com/privacy
지원되는 언어 id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "version": "1.0.12",
    "default_locale": "en",
    "description": "__MSG_description__",
    "icons": {
        "128": ".\/img\/128.png",
        "48": ".\/img\/48.png",
        "32": ".\/img\/32.png",
        "16": ".\/img\/16.png"
    },
    "action": {
        "default_icon": ".\/img\/128.png",
        "default_title": "__MSG_name__",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*",
                "http:\/\/www.netflix.com\/*"
            ],
            "js": [
                "content\/index.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content\/contentScript.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/netflixpartys.com\/*"
            ],
            "js": [
                "netflixParty.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content\/index.js",
                "content\/videoController.js",
                "content\/contentScript.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        },
        {
            "resources": [
                "netflixParty.js"
            ],
            "matches": [
                "https:\/\/netflixpartys.com\/*"
            ]
        },
        {
            "resources": [
                "chat\/index.html"
            ],
            "matches": [
                "https:\/\/*.netflix.com\/*",
                "http:\/\/*.netflix.com\/*"
            ]
        }
    ]
}