Netflix Wrapped

Netflix Wrapped - your 2020 watch history summarized

Netflix Wrapped란 무엇입니까?

Netflix Wrapped은(는) Maanav Garg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Netflix Wrapped - your 2020 watch history summarized"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Netflix Wrapped - your 2020 watch history summarized and displayed in a concise dashboard. 

Instructions:
1. Open up Netflix and log into your account
2. Head over to your viewing activity page via netflix.com/viewingactivity
3. Click on the Netflix Wrapped extension on your toolbar and simply click the WRAPPED button
Now just give it a minute or so (depending on how much Netflix you watch) and your Netflix Wrapped dashboard will (should) open up.

This extension is not created by or affiliated with Netflix in any way.                    

확장 프로그램 기본 정보

이름 Netflix Wrapped Netflix Wrapped
ID febagoadhbiohapfajddknchglmidhfb
공식 URL https://chromewebstore.google.com/detail/netflix-wrapped/febagoadhbiohapfajddknchglmidhfb
설명 Netflix Wrapped - your 2020 watch history summarized
파일 크기 132 KB
설치 횟수 390
현재 버전 1.5
최근 업데이트 2021-01-20
출시 날짜 2021-01-20
평점 5.00/5 총 14 개의 평점
개발자 Maanav Garg
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Maanav-G/Netflix-Wrapped
개인정보 보호 정책 페이지 URL https://github.com/Maanav-G/Netflix-Wrapped/tree/main/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix Wrapped",
    "description": "Netflix Wrapped - your 2020 watch history summarized",
    "version": "1.5",
    "icons": {
        "16": "files\/icon16.png",
        "48": "files\/icon48.png",
        "128": "files\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/viewingactivity"
            ],
            "js": [
                "utils\/utils.js",
                "utils\/charts.js",
                "utils\/data.js",
                "utils\/loader.js"
            ],
            "css": [],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "inject.js",
            "dashboard.html",
            "utils\/utils.js",
            "utils\/charts.js",
            "utils\/data.js",
            "utils\/loader.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Netflix Wrapped",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "inject.js",
        "dashboard.html",
        "utils\/utils.js",
        "utils\/charts.js",
        "utils\/data.js",
        "utils\/loader.js"
    ],
    "permissions": [
        "activeTab"
    ]
}