Examine source code of NoSlop

Inspect and view changes in NoSlop 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NoSlop",
  "version": "1.0",
  "manifest_version": 3,
  "description": "NoSlop",
  "icons": {
    "16": "images/nosloplogo.png",
    "48": "images/nosloplogo.png",
    "128": "images/nosloplogo.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*.supabase.co/*",
    "https://no-slop-backend.azurewebsites.net/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*",
        "*://x.com/*"
      ],
      "js": [
        "globals.js",
        "messaging.js",
        "auth.js",
        "utils.js",
        "tweetFiltering.js",
        "ui.js",
        "observer.js",
        "mutedConcepts.js",
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/slopbutton.png",
        "images/nosloplogo.png",
        "*.js"
      ],
      "matches": [
        "*://x.com/*",
        "*://twitter.com/*"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}