Scramble My Eggs

Scramble My Eggs

Scrambles all text on every page like some good morning eggs... Randomly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Scramble My Eggs",
  "manifest_version": 2,
  "version": "2.3",
  "description": "Scrambles all text on every page like some good morning eggs... Randomly",
  "permissions": [
    "tabs",
    "http://*/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "app.js"
      ],
      "run_at": "document_start"
    }
  ]
}