Ultimate Rickroller

Ultimate Rickroller

Changes links at random into rickrolls and other fun and annoying memes! Annoy yourself or your friends!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ultimate Rickroller",
  "version": "1.2",
  "description": "Changes links at random into rickrolls and other fun and annoying memes! Annoy yourself or your friends!",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "page.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/rick16.png",
      "32": "images/rick32.png",
      "48": "images/rick48.png",
      "128": "images/rick128.png"
    }
  },
  "icons": {
    "16": "images/rick16.png",
    "32": "images/rick32.png",
    "48": "images/rick48.png",
    "128": "images/rick128.png"
  },
  "manifest_version": 2
}