Vookmark - Easy video bookmarking

Vookmark - Easy video bookmarking

Bookmark videos easily. Watch them later anytime on any device.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Vookmark - Easy video bookmarking",
  "short_name": "Vookmark",
  "description": "Bookmark videos easily. Watch them later anytime on any device.",
  "version": "18.5.25.1256",
  "icons": {
    "19": "images/icon19.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon.png",
      "38": "images/[email protected]",
      "128": "images/[email protected]"
    },
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "manifest.json",
    "images/*.*",
    "fonts/*.*"
  ],
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "optional_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/content.bundle.js"
      ]
    }
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}