Color Text

Color Text

I don't know why anyone would want to but, this extension replaces ASCII text with colors.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Dougal Graham - [email protected]",
  "homepage_url": "http://colortext.tfiaa.com",
  "name": "Color Text",
  "description": "I don't know why anyone would want to but, this extension replaces ASCII text with colors.",
  "version": "1.3",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "icon128.png",
    "default_title": "Why?"
  },
  "background": {
    "scripts": [
      "color_script.js"
    ],
    "persistent": false
  }
}