TextEnhance Plus

TextEnhance Plus

TextEnhance Plus is a versatile browser extension designed to enhance your text-viewing experience by providing advanced ANSI support and formatting capabilities.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "4.0.0",
  "name": "ANSI Viewer",
  "description": "View ANSI file in the browser",
  "author": "eight",
  "homepage_url": "https://github.com/eight04/ansi-viewer",
  "permissions": [
    "contextMenus",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "*://*/*.ans",
    "*://*/*.ansi",
    "*://*/*.bbs",
    "file:///*"
  ],
  "background": {
    "scripts": []
  },
  "content_scripts": [
    {
      "matches": [
        "file:///*"
      ],
      "include_globs": [
        "*.ans",
        "*.bbs",
        "*.ansi"
      ],
      "js": [],
      "css": []
    }
  ],
  "commands": {
    "viewAsANSI": {
      "suggested_key": {
        "default": "Alt+A"
      },
      "description": "View current page as ANSI"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{8029593d-5b52-4ed9-bc92-db1243b67706}"
    }
  }
}