Examine source code of Custom Rule ANSI Viewer

Inspect and view changes in Custom Rule ANSI Viewer source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "version": "4.0.0",
  "name": "__MSG_extensionName__",
  "description": "__MSG_description__",
  "author": "eight",
  "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": "{d6312309-1d2e-459e-9048-82edd8ee8fd5}"
    }
  }
}