Vimeo Tooltip & Notification

Vimeo Tooltip & Notification

Show Vimeo clip's title & duration as link's tooltip or as notification

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Vimeo Tooltip & Notification",
  "version": "1.2.1",
  "description": "Show Vimeo clip's title & duration as link's tooltip or as notification",
  "icons": {
    "48": "icons/vimeo-48.png",
    "96": "icons/vimeo-96.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "options-default.js",
        "tooltip-cs.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "tooltip-bg.js"
    ]
  },
  "options_ui": {
    "browser_style": true,
    "page": "options.html"
  },
  "permissions": [
    "https://vimeo.com/api/*",
    "storage",
    "notifications"
  ]
}