Bookmark It

Bookmark It

The only extension that lets you create awesome bookmarks on your Youtube videos while showing you the best parts of videos.

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 It",
  "short_name": "The only extension that lets you create awesome bookmarks on your Youtube videos",
  "description": "The only extension that lets you create awesome bookmarks on your Youtube videos while showing you the best parts of videos.",
  "version": "1.5.12",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "index.html"
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "youtube.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://bookmark-it.happydevelopers.co https://apis.google.com https://cdn.firebase.com https://*.firebaseio.com; object-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "optional_permissions": [
    "https://*/"
  ]
}