Carbonation

Carbonation

Functionality, style, and general QoL improvements for ETI forums. Implements a blacklist, usernotes, and various shortcuts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Carbonation",
  "version": "2.5",
  "description": "Functionality and Style improvements for ETI",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "64": "Images/Icons/Lueshi-64.png"
  },
  "browser_action": {
    "default_icon": "Images/Icons/Lueshi-64.png",
    "default_title": "Carbonation",
    "default_popup": "Popup/Popup.html"
  },
  "options_ui": {
    "page": "Options/Options.html"
  },
  "permissions": [
    "storage",
    "http://u.endoftheinter.net/u.php"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.endoftheinter.net/*"
      ],
      "js": [
        "Globals.js",
        "Util.js",
        "BatchUploader.js"
      ]
    },
    {
      "matches": [
        "*://*.endoftheinter.net/topics/*",
        "*://*.endoftheinter.net/history.php*",
        "*://endoftheinter.net/main.php*",
        "*://*.endoftheinter.net/search.php*"
      ],
      "js": [
        "Topics.js"
      ]
    },
    {
      "matches": [
        "*://*.endoftheinter.net/showmessages.php*"
      ],
      "js": [
        "Posts.js"
      ]
    },
    {
      "matches": [
        "*://*.endoftheinter.net/postmsg.php*"
      ],
      "js": [
        "PostMessage.js"
      ]
    }
  ]
}