Replace Text

Adds replace text to context menu.

Replace Textとは何ですか?

Replace TextはDanny Keeleyによって開発されたChromeの拡張機能で、その主な機能は「Adds replace text to context menu.」です。

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

screenshot
screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        Right click on some text and choose Replace Text to begin!
Can also solve maths if in (brackets)

## Updates ##
v0.2 Styling and bug fixes (May 2021)                    

拡張機能の基本情報

名前 Replace Text Replace Text
ID jgghhonicjikbioneblcjhoghndmmcba
公式URL https://chromewebstore.google.com/detail/replace-text/jgghhonicjikbioneblcjhoghndmmcba
説明 Adds replace text to context menu.
ファイルサイズ 10.45 KB
インストール数 27
現在のバージョン 0.2
最終更新日 2021-05-10
公開日 2021-05-08
開発者 Danny Keeley
Eメール [email protected]
支払い方法 free
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Replace Text",
    "version": "0.2",
    "description": "Adds replace text to context menu.",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "contextMenus"
    ]
}