TubeLister

TubeLister

Generate a YouTube playlist from your opened tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Stelios Petrakis",
  "background": {
    "service_worker": "js/events.js"
  },
  "action": {
    "default_icon": {
      "19": "icons/icon-19.png",
      "38": "icons/icon-76.png"
    },
    "default_title": "TubeLister"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+T"
      }
    }
  },
  "description": "Generate a YouTube playlist from your opened tabs.",
  "homepage_url": "https://github.com/stelabouras/TubeLister",
  "icons": {
    "16": "icons/icon-16.png",
    "256": "icons/icon-256.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/content.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 3,
  "name": "TubeLister",
  "permissions": [
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "version": "3.0"
}