Examine source code of Find & Replace for Text Editing

Inspect and view changes in Find & Replace for Text Editing 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": "Find & Replace for Text Editing",
  "version": "1.4.1",
  "description": "Adds search & replace tool for input fields and editable text content.",
  "author": "Dalimil Hajek",
  "icons": {
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "scripting"
  ],
  "background": {
    "service_worker": "src/background.js"
  },
  "action": {
    "default_title": "Find & Replace",
    "default_popup": "src/widget/widget.html",
    "default_icon": {
      "32": "images/icon32.png"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Command+Shift+F"
      }
    }
  }
}