Companion for Reddit

Companion for Reddit

Redditor best friend. Enhancement Suite and Sidebar for Reddit and Subreddit. Lite, Mini and Light version for Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_chrome_extension_name__",
  "description": "__MSG_chrome_extension_description__",
  "version": "10.8",
  "default_locale": "en",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAj3lcGJ6vyoiioRyP/wRAMFd6jmggZLOo8eVFOSL6Am9gmywhwXTgDU8+w5HHL3Okin9kBW53UvZKyYtyqKKUmrKHChHERctfDyWsg5hDQUVXPLDca3VB3B3kwgzAmnf6eytAPP9SAibXstzUCuiujcII6wcoOmV60AUaheKHcmNWHGbpWZSvf9r7Hm8gVtf4GqeZy/nTrC8zuPIa199ds26dsnbbv9a54iPQ4QindsHZPr86oUjI2f0xkgSlZLUSDvQH39IBEzL773A0Kbjp89ggzq0OuLuq+EhP5rLY44ubZObmVRKc0TPqzi3RK+SnOAEEM3IrPIbrwJ0Gf9xIOQIDAQAB",
  "options_page": "options/index.html",
  "action": {
    "default_title": "__MSG_chrome_extension_name__",
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    }
  },
  "background": {
    "service_worker": "eventPage.js"
  },
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "permissions": [
    "system.display",
    "scripting",
    "activeTab",
    "notifications",
    "contextMenus",
    "unlimitedStorage",
    "storage"
  ],
  "host_permissions": [
    "*://*.reddit.com/*",
    "*://*.wwevents.fun/*",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "js/safeResponse/purify.min.js",
        "js/toastr/toastr.min.js",
        "i18n.js",
        "js/i18n/i18n.js",
        "js/introjs/intro.min.js",
        "js/material-io/material-components-web.min.js",
        "js/jquery-menu/jquery.contextMenu.min.js",
        "js/jquery-menu/jquery.ui.position.min.js",
        "js/file-saver/FileSaver.min.js",
        "utils.js",
        "myScript.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "*://*.reddit.com/*"
      ],
      "js": [
        "myScriptRedditBadge.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "js/*",
        "options/*",
        "css/*",
        "html/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}