BehindTheLogs_VIDEOSYOUT

BehindTheLogs_VIDEOSYOUT

I was tired to open a new youtube tab to find a song when I'm already listen one

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BehindTheLogs_VIDEOSYOUT",
  "description": "I was tired to open a new youtube tab to find a song when I'm already listen one",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "css": [
        "styles/main.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "extension.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Find Youtube Videos",
    "default_icon": "images/logo.png",
    "default_popup": "index.html"
  },
  "permissions": [
    "tabs",
    "https://www.googleapis.com/*"
  ]
}