Replace Text

Adds replace text to context menu.

Cos'è Replace Text?

Replace Text è un'estensione di Chrome sviluppata da Danny Keeley, e la sua funzione principale è "Adds replace text to context menu.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Replace Text

Scarica i file di estensione Replace Text in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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)                    

Informazioni di Base sull'Estensione

Nome Replace Text Replace Text
ID jgghhonicjikbioneblcjhoghndmmcba
URL Ufficiale https://chromewebstore.google.com/detail/replace-text/jgghhonicjikbioneblcjhoghndmmcba
Descrizione Adds replace text to context menu.
Dimensione del File 10.45 KB
Conteggio Installazioni 27
Versione Corrente 0.2
Ultimo Aggiornamento 2021-05-10
Data di Pubblicazione 2021-05-08
Sviluppatore Danny Keeley
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}