Examine source code of DSlist

Inspect and view changes in DSlist 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
{
  "name": "DSlist",
  "version": "1.1.32",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": "images/logo.png"
  },
  "icons": {
    "16": "images/logo.png",
    "48": "images/logo.png",
    "128": "images/logo.png"
  },
  "permissions": [
    "declarativeNetRequestWithHostAccess",
    "storage",
    "cookies",
    "tabs",
    "notifications"
  ],
  "host_permissions": [
    "*://edstocklist.com/*",
    "*://catalyst.honahlee.com.au/*",
    "*://owingsgenie.pw/*",
    "*://dslist.au/*",
    "*://direct.ch2.net.au/*",
    "*://shop.symbion.com.au/*",
    "*://www.sigmaconnect.com.au/*",
    "*://my.api.net.au/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://direct.ch2.net.au/*"
      ],
      "css": [
        "css/style.css"
      ],
      "all_frames": true,
      "js": [
        "js/lib/jquery-3.6.1.min.js",
        "js/configs.js",
        "js/cs/contentscript.js",
        "js/cs/ch2.js"
      ]
    },
    {
      "matches": [
        "https://www.sigmaconnect.com.au/*"
      ],
      "css": [
        "css/style.css"
      ],
      "all_frames": true,
      "js": [
        "js/lib/jquery-3.6.1.min.js",
        "js/configs.js",
        "js/cs/contentscript.js",
        "js/cs/sigma.js"
      ]
    },
    {
      "matches": [
        "https://shop.symbion.com.au/*"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_end",
      "js": [
        "js/lib/jquery-3.6.1.min.js",
        "js/configs.js",
        "js/cs/contentscript.js",
        "js/cs/symbion.js"
      ]
    },
    {
      "matches": [
        "https://hts.symbionhealth.com/SHOP/Common/ProductOrdering.aspx"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_end",
      "js": [
        "js/lib/jquery-3.6.1.min.js",
        "js/configs.js",
        "js/cs/contentscript.js",
        "js/cs/symbion2.js"
      ]
    },
    {
      "matches": [
        "https://revive.my.api.net.au/*"
      ],
      "css": [
        "css/style.css"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "js/lib/jquery-3.6.1.min.js",
        "js/configs.js",
        "js/cs/contentscript.js",
        "js/cs/my_api2.js"
      ]
    },
    {
      "matches": [
        "https://catalyst.honahlee.com.au/*"
      ],
      "css": [
        "css/style.css"
      ],
      "all_frames": true,
      "js": [
        "js/lib/jquery-3.6.1.min.js",
        "js/configs.js",
        "js/cs/contentscript.js",
        "js/cs/catalyst.js"
      ]
    },
    {
      "matches": [
        "*://edstocklist.com/*",
        "*://owingsgenie.pw/public/*",
        "*://dslist.au/*"
      ],
      "css": [
        "css/hide-dl-link.css"
      ],
      "run_at": "document_start"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "js/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}