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
电子邮箱 [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"
    ]
}