Netflix Viewing Activity

This open-source extension automatically retrieves your Netflix viewing activity in JSON or CSV format.

What is Netflix Viewing Activity?

Netflix Viewing Activity is a Chrome extension developed by Sander, and its main feature is "This open-source extension automatically retrieves your Netflix viewing activity in JSON or CSV format.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Netflix Viewing Activity Extension CRX File

Download Netflix Viewing Activity extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Download your Netflix account viewing activity in JSON or CSV. This extension is open source and available on GitHub.                    

Extension Basic Information

Name Netflix Viewing Activity Netflix Viewing Activity
ID akcphadjbeckmkdoimhbfechbandeggg
Official URL https://chrome.google.com/webstore/detail/netflix-viewing-activity/akcphadjbeckmkdoimhbfechbandeggg
Description This open-source extension automatically retrieves your Netflix viewing activity in JSON or CSV format.
File Size 50.03 KB
Installation Count 271
Current Version 1.1.1
Last Updated 2019-11-28
Publish Date 2019-11-28
Rating 5.00/5 Total 1 Ratings
Developer Sander
Payment Type free
Extension Website https://github.com/lesander/netflix-viewing-activity
Help Page URL https://github.com/lesander/netflix-viewing-activity/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Viewing Activity",
    "description": "This open-source extension automatically retrieves your Netflix viewing activity in JSON or CSV format.",
    "homepage_url": "https:\/\/github.com\/lesander\/netflix-viewing-activity",
    "version": "1.1.1",
    "manifest_version": 2,
    "icons": {
        "128": "src\/img\/nva-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "src\/js\/content.js"
            ],
            "css": [
                "src\/css\/main.css",
                "src\/css\/buttons.css",
                "src\/css\/loader.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.netflix.com\/*"
        ]
    },
    "permissions": [
        "*:\/\/*.netflix.com\/*",
        "cookies"
    ],
    "web_accessible_resources": [
        "src\/js\/inject.js",
        "src\/css\/inject.css",
        "src\/js\/lib\/jquery.min.js",
        "src\/js\/lib\/papaparse.min.js"
    ]
}