Find & Replace for Text Editing

Find & Replace for Text Editing

Adds search & replace tool for input fields and editable text content.

Merlin
Additional files are visible only to premium users

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