WordQuake

WordQuake

Replaces all nouns on a webpage with a noun in the WordNet. "WordQuaked" webpages are chaotic, creative, and oftentimes hilarious!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WordQuake",
  "version": "1.3",
  "author": "Alan Du, Keith Gladstone, Derrick Xin",
  "description": "Replaces all nouns on a webpage with a noun in the WordNet. \"WordQuaked\" webpages are chaotic, creative, and oftentimes hilarious!",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "128": "icon.png"
  },
  "background": {
    "matches": [
      "*://*/*"
    ],
    "scripts": [
      "listener.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "https://wordquake.me/*"
  ]
}