Bookmark Inside Youtube Videos

Bookmark Inside Youtube Videos

Bookmark specific times in a youtube video with a note

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bookmark Inside Youtube Videos",
  "description": "Bookmark specific times in a youtube video with a note",
  "version": "0.0.2",
  "browser_action": {
    "default_icon": "./images/logo.png",
    "default_title": "Bookmark.Video",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "./images/logo.png",
    "48": "./images/logo.png",
    "128": "./images/logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "./js/config.js",
        "./js/jquery.min.js",
        "./js/core.js",
        "js/simpleNotify.js",
        "./js/content.js"
      ],
      "css": [
        "css/simpleNotifyStyle.css",
        "./css/content.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "background": {
    "scripts": [
      "./js/config.js",
      "./js/jquery.min.js",
      "./js/core.js",
      "./js/background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "images/*.gif",
    "images/*.svg"
  ],
  "permissions": [
    "storage",
    "https://www.youtube.com/*"
  ]
}