colorful

colorful

colorful changes the blackness of html text into a random gradient of colors. click on the colorful icon on the top left of your…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "colorful",
  "manifest_version": 2,
  "version": "1.1",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "color_changer.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "color_listener.js"
    ]
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "browser_action": {
    "name": "colorful",
    "default_icons": "icon_128.png",
    "default_title": "colorful"
  }
}