Find & Replace for Text Editing

Find & Replace for Text Editing

Adds search & replace tool for input fields and editable text content. It includes search history, favourites, templates, highlighting, and advanced regex patterns. Use it when composing long emails, blog articles, or forum posts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Find & Replace for Text Editing",
  "version": "1.3.18resigned1",
  "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"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "src/background.js"
    ]
  },
  "browser_action": {
    "default_title": "Find & Replace",
    "default_popup": "src/widget/widget.html",
    "default_icon": {
      "32": "images/icon32.png"
    }
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Command+Shift+F"
      }
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{ad1a1412-512a-4955-8bea-3ac63a5d970b}"
    }
  }
}