Forced to Rhyme

Forced to Rhyme

Like the name says. If you install this extension, you will be forced to rhyme. It makes for a great prank. **Click the icon in…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Forced to Rhyme",
  "version": "1.0",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Check to see if our code is on this page"
  },
  "icons": {
    "128": "icon.png"
  }
}