Time Bookmarks

Time Bookmarks

Allows you to revisit Youtube videos from bookmarks which automatically starts where you left off.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Time Bookmarks",
  "version": "1.4",
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "homepage_url": "http://www.jamescoleman.com.au",
  "description": "Allows you to revisit Youtube videos from bookmarks which automatically starts where you left off.",
  "permissions": [
    "bookmarks",
    "storage",
    "*://*.youtube.com/*"
  ],
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "jquery.js",
        "popup.js"
      ]
    }
  ]
}