Examine source code of BlueLiteBlocker

Inspect and view changes in BlueLiteBlocker 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",
  "manifest_version": 3,
  "name": "BlueLiteBlocker",
  "version": "0.0.0.9",
  "description": "Filter tweets from Twitter Blue users without having to block or mute them.",
  "icons": {
    "48": "icons/logo-48.png",
    "128": "icons/logo-128.png"
  },
  "options_ui": {
    "page": "settings.html",
    "browser_style": true
  },
  "action": {
    "default_area": "navbar",
    "default_icon": {
      "128": "icons/logo-128.png"
    },
    "default_popup": "settings.html"
  },
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "bluelitefilter@malwaretech.com",
      "strict_min_version": "57.0"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "xhr_hook.js"
      ],
      "matches": [
        "*://*.twitter.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "extension.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "injector.js"
      ]
    }
  ]
}