Eagle Eye - Watch videos in a floating window

Eagle Eye - Watch videos in a floating window

Preview video links in a small floating window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.6",
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    "youtubeModal.html",
    "tooltip.html"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/close-button.css",
        "css/ripple.min.css",
        "css/window-styles.css",
        "css/tippy.css"
      ],
      "js": [
        "js/deps/popper.min.js",
        "js/deps/tippy.min.js",
        "js/deps/interact.min.js",
        "js/deps/jquery.min.js",
        "js/deps/jquery.initialize.min.js",
        "js/globals.js",
        "js/index.js",
        "js/tooltip.js",
        "js/open-screen.js",
        "js/keyboard-events.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "manifest_version": 2
}