Prime Party Extended

Watch Amazon Prime Video with friends! New features: skip intros, adjust playback, custom profile picture & many more.

Prime Party Extended란 무엇입니까?

Prime Party Extended은(는) Browser Extensions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Watch Amazon Prime Video with friends! New features: skip intros, adjust playback, custom profile picture & many more."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Share your Prime Video viewing experience with a friend, your special someone, or whoever you want, no matter the distance! All you need is an Amazon Prime subscription, internet connection, and this extension.

What's more, Prime Party Extended gives you a bunch of handy tools to customize the Prime Video player. Personalize your entertainment with:

- 🆕Subtitles & captions personalization options
- 🆕Custom profile picture options
- Many video options (speed, zoom, rotation)
- Picture in picture mode

Discover all the features and watch your Prime favorites together with friends.

How to use Prime Party Extended:
1. Add extension to Chrome.
2. Go to the Chrome extensions list (a small puzzle piece icon next to your Chrome avatar) or go to Chrome options ---> More Tools  ---> Extensions.
3. Click Prime Party Extended icon to open the control panel.
4. Navigate through the options.
5. In order to start a new Prime Party session, provide your username and create a shareable link - everyone with the link, Prime Video subscription, and extension installed can join.
6. Pick a movie or series to watch.

Disclaimer: Prime Video is a trademark of Amazon.com, Inc. This website & extension hold no association or affiliation with Amazon Prime Video or any third-party companies.                    

확장 프로그램 기본 정보

이름 Prime Party Extended Prime Party Extended
ID fcngjpblanflfmbkdkheajgobilapkfa
공식 URL https://chromewebstore.google.com/detail/prime-party-extended/fcngjpblanflfmbkdkheajgobilapkfa
설명 Watch Amazon Prime Video with friends! New features: skip intros, adjust playback, custom profile picture & many more.
파일 크기 314 KB
설치 횟수 10,000
현재 버전 0.18
최근 업데이트 2024-01-24
출시 날짜 2020-07-02
평점 3.58/5 총 38 개의 평점
개발자 Browser Extensions
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.vodextended.com/privacy_policy
지원되는 언어 en,nl,pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Prime Party Extended",
    "description": "Watch Amazon Prime Video with friends! New features: skip intros, adjust playback, custom profile picture & many more.",
    "version": "0.18",
    "default_locale": "en",
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.primevideo.com\/*",
        "https:\/\/*.amazon.com\/*",
        "https:\/\/*.amazon.co.uk\/*",
        "https:\/\/*.amazon.de\/*",
        "https:\/\/*.amazon.co.jp\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.primevideo.com\/*",
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.amazon.co.uk\/*",
                "https:\/\/*.amazon.de\/*",
                "https:\/\/*.amazon.co.jp\/*"
            ],
            "js": [
                "src\/contentscripts\/ui\/amazon.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*.primevideo.com\/*",
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.amazon.co.uk\/*",
                "https:\/\/*.amazon.de\/*",
                "https:\/\/*.amazon.co.jp\/*"
            ],
            "css": [
                "src\/contentscripts\/ui\/sidebar-host.css",
                "src\/extended\/injectedCss.css"
            ],
            "js": [
                "config.js",
                "lib\/jquery.js",
                "lib\/socketio.js",
                "lib\/global-helpers.js",
                "lib\/states.js",
                "src\/contentscripts\/helpers\/helper.js",
                "src\/contentscripts\/helpers\/ui-helper.js",
                "src\/contentscripts\/listener\/state-listener.js",
                "src\/contentscripts\/listener\/extension-messages.js",
                "src\/contentscripts\/listener\/websocket.js",
                "src\/contentscripts\/listener\/start-video-button.js",
                "src\/contentscripts\/listener\/review-listener.js",
                "src\/contentscripts\/actions\/next-episode.js",
                "src\/contentscripts\/actions\/close.js",
                "src\/contentscripts\/actions\/play.js",
                "src\/contentscripts\/actions\/pause.js",
                "src\/contentscripts\/actions\/seek.js",
                "src\/contentscripts\/actions\/bind-actions.js",
                "src\/contentscripts\/ui\/navbar.js",
                "src\/contentscripts\/ui\/sidebar-host.js",
                "src\/contentscripts\/listener\/bootstrap.js",
                "src\/extended\/options.js",
                "src\/extended\/content.js",
                "src\/contentscripts\/amazon.min.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-small.png",
                "src\/sidebar\/*"
            ],
            "matches": [
                "https:\/\/*.primevideo.com\/*",
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.amazon.co.uk\/*",
                "https:\/\/*.amazon.de\/*",
                "https:\/\/*.amazon.co.jp\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "src\/background\/background.js"
    },
    "action": {
        "default_icon": {
            "19": "logo.png",
            "38": "logo.png"
        },
        "default_title": "Prime Party Extended",
        "default_popup": "src\/popup\/popup.html"
    },
    "icons": {
        "16": "logo.png",
        "38": "logo.png",
        "128": "logo128.png"
    }
}