Video Recall for YouTube™

Video Recall for YouTube™

Manage open and saved YouTube™ videos to pick up right where you left off.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Video Recall for YouTube™",
  "short_name": "Video Recall for YouTube™",
  "description": "Manage open and saved YouTube™ videos to pick up right where you left off.",
  "version": "1.4",
  "manifest_version": 2,
  "options_ui": {
    "page": "ytrSettings.html",
    "chrome_style": true
  },
  "icons": {
    "16": "assets/icon16.png",
    "19": "assets/icon19.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "assets/icon19.png",
      "38": "assets/icon38.png"
    },
    "default_popup": "popup.html",
    "default_title": "Video Recall for YouTube™"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "ytrContent.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "ytrInject.js",
    "http://www.youtube.com/iframe_api"
  ]
}