Yt-emb: Quick & Simple Youtube Embedding

Yt-emb: Quick & Simple Youtube Embedding

Embed Youtube videos with ease using Yt-emb!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.0",
  "name": "Yt-emb: Quick & Simple Youtube Embedding",
  "description": "Embed Youtube videos with ease using Yt-emb!",
  "icons": {
    "16": "src/icons/emb16.png",
    "32": "src/icons/emb32.png",
    "48": "src/icons/emb48.png",
    "128": "src/icons/emb128.png",
    "256": "src/icons/emb256.png",
    "1500": "src/icons/emb1500.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": "src/icons/emb1500.png"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "service.js"
  },
  "commands": {
    "open-embed": {
      "suggested_key": {
        "default": "Ctrl+Shift+Up"
      },
      "description": "Open current tab as embed"
    },
    "open-cookie": {
      "suggested_key": {
        "default": "Ctrl+Shift+Down"
      },
      "description": "Open current tab as no-cookie"
    }
  }
}