YouTube Experience Enhancer

YouTube Experience Enhancer

Enables You to have a Current Playlist While Playing YouTube

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Experience Enhancer",
  "author": "Prashant Priyadarshi",
  "description": "Enables You to have a Current Playlist While Playing YouTube",
  "version": "3.06",
  "manifest_version": 2,
  "icons": {
    "25": "images/youtube/4.PNG",
    "48": "images/youtube/4.PNG"
  },
  "permissions": [
    "*://www.youtube.com/*",
    "*://baithaki.com/*",
    "*://localhost/*",
    "contextMenus",
    "tabs"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://baithaki.com/*"
    ]
  },
  "browser_action": {
    "default_icon": {
      "20": "images/youtube/4.PNG",
      "40": "images/youtube/4.PNG"
    },
    "default_title": "YouTube Experience Enhancer",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js",
        "js/listener.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  }
}