YTBookmarker

YTBookmarker

Bookmark YouTube videos at their current playback position with one click to a folder in your bookmark bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Bookmark your current YouTube videos with one click",
  "manifest_version": 2,
  "name": "YTBookmarker",
  "version": "2.0.4resigned1",
  "homepage_url": "http://www.oneshotdev.com",
  "applications": {
    "gecko": {
      "id": "jid1-Wk6OMy40BudUdw@jetpack"
    }
  },
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/watch*"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ],
  "permissions": [
    "bookmarks",
    "activeTab",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "browser_action": {
    "default_icon": "icons/icon-128.png",
    "default_title": "YTBookmarker",
    "default_popup": "message.html"
  },
  "options_ui": {
    "page": "settings.html"
  }
}