Find & Replace for Text Editing

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

Find & Replace for Text Editingとは何ですか?

Find & Replace for Text Editingはbanho27によって開発されたChromeの拡張機能で、その主な機能は「Adds search & replace tool for input fields and editable text content.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Find & Replace for Text Editing拡張機能のCRXファイルをダウンロード

Find & Replace for Text Editing拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Find & Replace allows you to search and replace text in editable areas, directly in your browser. IT WILL NOT WORK WITH STATIC TEXT (ex. this page). Use it for composing long emails, blog articles, or forum posts.

This extension DOES NOT support find & replace for the following:  
-Shopify (try our other app: https://apps.shopify.com/seeker)
-Google Docs, Sheets, Forms, Slides
-Jupyter Notebooks 
-Confluence
-Wordpress
-Magento

Regarding email sharing, we take your privacy very seriously and will never use your information for anything other than communicating directly about the extension, updates etc. 

For an update log, go to www.findreplacer.com/updates

Core Features:
 * Find and replace multiple queries in one click (premium - $9.95 for lifetime usage)
 * Save to Favorites 
 * Text Templates (click to paste into page)
 * Regular expression info previews

Search Options:
 * Match Case (case-sensitive search)
 * Whole Words
 * Regular Expressions
 * Limit search to text selection
 * Include single-line inputs in search

Shortcut to Open: Ctrl+Shift+F (Mac: Cmd+Shift+F)                    

拡張機能の基本情報

名前 Find & Replace for Text Editing Find & Replace for Text Editing
ID jajhdmnpiocpbpnlpejbgmpijgmoknnl
公式URL https://chrome.google.com/webstore/detail/find-replace-for-text-edi/jajhdmnpiocpbpnlpejbgmpijgmoknnl
説明 Adds search & replace tool for input fields and editable text content.
ファイルサイズ 945 KB
インストール数 50,000
現在のバージョン 1.3.40
最終更新日 2023-10-05
公開日 2020-05-06
評価 3.84/5 合計 246 レビュー
開発者 banho27
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.findreplacer.com/
ヘルプページのURL https://www.findreplacer.com/
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Find & Replace for Text Editing",
    "version": "1.3.40",
    "description": "Adds search & replace tool for input fields and editable text content.",
    "author": "Dalimil Hajek",
    "icons": {
        "128": "images\/icon128.png",
        "48": "images\/icon48.png",
        "32": "images\/icon32.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "src\/jman.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "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"
            }
        }
    }
}