Word Switcher

You can easily switch any word in your text with just a click!
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",
  "description": "You can easily switch any word in your text with just a click!",
  "icons": {
    "128": "logo.png"
  },
  "action": {
    "default_icon": "logo.png",
    "default_title": "Word Switcher",
    "default_popup": "popup.html"
  },
  "manifest_version": 3,
  "name": "Word Switcher",
  "version": "1",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}