Tweet Search

Tweet Search

Search Thoughts on Twitter

Merlin
Additional files are visible only to premium users

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"
}