Rickroll Extension

Rickroll Extension

A Chrome extension that has a 1/5 chance to load the 'Never Gonna Give You Up' video when opening a random webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Rickroll Extension",
  "version": "1.0",
  "description": "A Chrome extension that has a 1/5 chance to load the 'Never Gonna Give You Up' video when opening a random webpage.",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "permissions": [
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}