Examine source code of Reddit Mobile Chat Fix

Inspect and view changes in Reddit Mobile Chat Fix 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
{
  "author": "nuckle",
  "description": "Fixes reddit chat (chat.reddit.com) for mobile devices.",
  "name": "Reddit Mobile Chat Fix",
  "version": "1.6.0",
  "content_scripts": [
    {
      "js": [
        "src/entries/contentScript/primary/main.js"
      ],
      "matches": [
        "*://chat.reddit.com/*"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "19": "icons/19.png",
    "32": "icons/32.png",
    "38": "icons/38.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "96": "icons/96.png",
    "128": "icons/128.png",
    "256": "icons/256.png",
    "512": "icons/512.png"
  },
  "options_ui": {
    "page": "src/entries/options/index.html",
    "open_in_tab": true,
    "chrome_style": false
  },
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "*://chat.reddit.com/*"
  ],
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "32": "icons/32.png",
      "48": "icons/48.png",
      "128": "icons/128.png",
      "256": "icons/256.png",
      "512": "icons/512.png"
    },
    "default_popup": "src/entries/popup/index.html"
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "assets/main-BKO66JjC.css",
    "assets/src/entries/contentScript/primary/main-vSPzESDU.js",
    "assets/utils-BRv5akgo.js",
    "src/entries/injectChat.js"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{d97e2f06-ae37-4cee-bf52-792a0041a605}"
    }
  }
}