Explore.org Video Helper

Explore.org Video Helper

Will help you scroll down while watching your fav stream.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Explore.org Video Helper",
  "short_name": "Explore Scroll",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "Will help you scroll down while watching your fav stream.",
  "homepage_url": "http://devvp.com",
  "author": "Vagelis P.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Click to float video on scroll"
  },
  "permissions": [
    "https://explore.org/*",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://explore.org/*"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}