Veep

Veep

Keep your videos playback positions in sync across all of your devices and browser restarts.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Veep",
  "description": "Keep your videos playback positions in sync across all of your devices and browser restarts.",
  "version": "1.1.0",
  "icons": {
    "16": "img/veep-16.png",
    "48": "img/veep-48.png",
    "128": "img/veep-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/watch*"
      ],
      "js": [
        "src/youtube-storage.js",
        "src/url-params.js",
        "src/youtube.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "src/youtube-storage.js",
      "src/youtube-cleanup.js",
      "src/videos-count.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "img/veep-19.png",
      "38": "img/veep-38.png"
    },
    "default_popup": "src/last-videos.html",
    "default_title": "Veep"
  },
  "permissions": [
    "storage"
  ]
}