YoutubeCapture

YoutubeCapture

YouTube audit project

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YoutubeCapture",
  "version": "2.7",
  "description": "YouTube audit project",
  "icons": {
    "48": "icons/border-48.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "YouTube Extension",
    "default_icon": "icons/border-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "jquery-3.5.1.min.js",
        "jquery-ui-1.12.1/jquery-ui.min.js",
        "youtubecapture.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js",
      "database.js",
      "deletion.js",
      "check_user.js"
    ]
  },
  "permissions": [
    "notifications",
    "*://*.myactivity.google.com/*",
    "tabs",
    "alarms",
    "storage",
    "https://is-herd.ischool.uw.edu/",
    "unlimitedStorage",
    "https://www.youtube.com/feed/history"
  ],
  "web_accessible_resources": [
    "search_queries.json"
  ]
}