Nebulizer: YouTube to Nebula

Nebulizer: YouTube to Nebula

On YouTube, see which channels are on Nebula and navigate to them quickly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Nebulizer",
  "author": "Val Packett",
  "version": "0.1.0",
  "description": "On YouTube, see which channels are on Nebula and navigate to them quickly",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "48": "icon.svg",
    "96": "icon.svg"
  },
  "permissions": [
    "storage",
    "notifications"
  ],
  "action": {
    "default_title": "Nebulizer"
  },
  "host_permissions": [
    "https://content.api.nebula.app/*",
    "https://www.youtube.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "youtube.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "nebulizer.js"
    ],
    "type": "module"
  }
}