Replace Text

Adds replace text to context menu.

What is Replace Text?

Replace Text is a Chrome extension developed by Danny Keeley, and its main feature is "Adds replace text to context menu.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Replace Text Extension CRX File

Download Replace Text extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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)                    

Extension Basic Information

Name Replace Text Replace Text
ID jgghhonicjikbioneblcjhoghndmmcba
Official URL https://chromewebstore.google.com/detail/replace-text/jgghhonicjikbioneblcjhoghndmmcba
Description Adds replace text to context menu.
File Size 10.45 KB
Installation Count 27
Current Version 0.2
Last Updated 2021-05-10
Publish Date 2021-05-08
Developer Danny Keeley
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}