Netflix Viewing Stats

Netflix Viewing Stats

Shows viewing stats dashboard to know how you spend your time on Netflix.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extensionTitle__",
  "version": "2.4.0",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "permissions": [
    "https://*.netflix.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/settings/viewed?stats=true"
      ],
      "js": [
        "vendor/js/lodash.min.js",
        "vendor/js/chart.min.js",
        "vendor/js/json2csv.min.js",
        "vendor/js/jquery.min.js",
        "vendor/js/purify.min.js",
        "utils/template.js",
        "utils/loader.js",
        "utils/db.js",
        "utils/activity.js",
        "utils/stats.js",
        "utils/achievements.js",
        "utils/chart.js",
        "utils/viewing.js",
        "utils/format.js",
        "utils/debug.js",
        "dashboard/dashboard.js"
      ],
      "css": [
        "vendor/css/material-icons.css",
        "dashboard/dashboard.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "dashboard/dashboard.html",
    "empty.html",
    "error.html",
    "images/tv.svg",
    "images/movie.svg",
    "images/ani_netflix_stats.gif"
  ],
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "images/logo16.png",
      "32": "images/logo32.png",
      "48": "images/logo48.png",
      "128": "images/logo128.png"
    }
  },
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "manifest_version": 2
}