Examine source code of Tweet Search

Inspect and view changes in Tweet Search 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": "Tweet Search",
  "version": "1.0.0",
  "manifest_version": 3,
  "description": "Search Thoughts on Twitter",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "48": "src/images/48.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "src/contentscript/content.js"
      ],
      "all_frames": false
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "16": "src/images/16.png",
    "48": "src/images/48.png",
    "128": "src/images/128.png"
  },
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}