Replace Text

Adds replace text to context menu.

Was ist Replace Text?

Replace Text ist eine Chrome-Erweiterung, die von Danny Keeley entwickelt wurde, und ihr Hauptmerkmal ist "Adds replace text to context menu.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Replace Text-Erweiterungs-CRX-Datei herunterladen

Laden Sie Replace Text-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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)                    

Grundlegende Informationen zur Erweiterung

Name Replace Text Replace Text
ID jgghhonicjikbioneblcjhoghndmmcba
Offizielle URL https://chromewebstore.google.com/detail/replace-text/jgghhonicjikbioneblcjhoghndmmcba
Beschreibung Adds replace text to context menu.
Dateigröße 10.45 KB
Installationsanzahl 27
Aktuelle Version 0.2
Letztes Update 2021-05-10
Veröffentlichungsdatum 2021-05-08
Entwickler Danny Keeley
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}