Disqus Auto Expander

Disqus Auto Expander

Automatically shows replies and new comments in Disqus discussions. Stops autoplay media and opens URLs in a new tab/window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Disqus Auto Expander",
  "version": "1.1.3.1",
  "description": "Automatically shows replies and new comments in Disqus discussions. Stops autoplay media and opens URLs in a new tab/window.",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "background": {
    "service_worker": "dax-background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://disqus.com/embed/comments/*",
        "*://disqus.com/home/discussion/*"
      ],
      "all_frames": true,
      "js": [
        "dax-content.js"
      ],
      "css": [
        "dax-content.css"
      ]
    },
    {
      "matches": [
        "*://cdn.embedly.com/widgets/media.html*"
      ],
      "all_frames": true,
      "js": [
        "dax-stopAutoPlay.js"
      ]
    }
  ],
  "icons": {
    "16": "images/disqus_eye_16.png",
    "32": "images/disqus_eye_32.png",
    "48": "images/disqus_eye_48.png"
  },
  "options_ui": {
    "page": "dax-config.html"
  },
  "action": {
    "default_icon": {
      "16": "images/disqus_eye_16.png",
      "32": "images/disqus_eye_32.png"
    },
    "default_popup": "dax-config.html",
    "default_title": "Disqus Auto Expander v1.1"
  }
}