Netflix Wrapped

Netflix Wrapped - your 2020 watch history summarized

Cos'è Netflix Wrapped?

Netflix Wrapped è un'estensione di Chrome sviluppata da Maanav Garg, e la sua funzione principale è "Netflix Wrapped - your 2020 watch history summarized".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Netflix Wrapped

Scarica i file di estensione Netflix Wrapped in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Netflix Wrapped Netflix Wrapped
ID febagoadhbiohapfajddknchglmidhfb
URL Ufficiale https://chromewebstore.google.com/detail/netflix-wrapped/febagoadhbiohapfajddknchglmidhfb
Descrizione Netflix Wrapped - your 2020 watch history summarized
Dimensione del File 132 KB
Conteggio Installazioni 390
Versione Corrente 1.5
Ultimo Aggiornamento 2021-01-20
Data di Pubblicazione 2021-01-20
Valutazione 5.00/5 Totale 14 Valutazioni
Sviluppatore Maanav Garg
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Maanav-G/Netflix-Wrapped
URL della Pagina della Politica sulla Privacy https://github.com/Maanav-G/Netflix-Wrapped/tree/main/privacy-policy
Lingue Supportate 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"
    ]
}