Page Pranker

Page Pranker

Play fun pranks on your friends or enemies. Break their site or subtly mess with them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Page Pranker",
  "version": "1.0.0",
  "action": {
    "default_popup": "index.html",
    "default_title": "Page Pranker"
  },
  "description": "Play fun pranks on your friends or enemies. Break their site or subtly mess with them",
  "author": "Theodor Thrane",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./edit.js"
      ]
    }
  ],
  "icons": {
    "16": "./icons/icon16.png",
    "32": "./icons/icon32.png",
    "48": "./icons/icon48.png",
    "128": "./icons/icon128.png"
  },
  "permissions": [
    "storage"
  ]
}