Text Changer

This extension allows you to change some words for other.

Cos'è Text Changer?

Text Changer è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension allows you to change some words for other.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Text Changer

Scarica i file di estensione Text Changer 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

                        This Chrome extension lets you change text on pages that you navigate.

Features:
- Add multiple words;
- Badge shows the ammount of text changed;
- Disable badge;
- Updates text efficiently when the DOM is changed.                    

Informazioni di Base sull'Estensione

Nome Text Changer Text Changer
ID fabkbngakgpgbfjcgniagacieofijajm
URL Ufficiale https://chromewebstore.google.com/detail/text-changer/fabkbngakgpgbfjcgniagacieofijajm
Descrizione This extension allows you to change some words for other.
Dimensione del File 45.17 KB
Conteggio Installazioni 1,491
Versione Corrente 1.0.0
Ultimo Aggiornamento 2018-07-30
Data di Pubblicazione 2018-07-29
Valutazione 4.27/5 Totale 11 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/marcioggs/text-changer-chrome-extension
URL della Pagina di Aiuto https://github.com/marcioggs/text-changer-chrome-extension/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Text Changer",
    "version": "1.0.0",
    "description": "This extension allows you to change some words for other.",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "author": "M\u00e1rcio Gabriel",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/changeText.js"
            ]
        }
    ],
    "options_page": "pages\/options.html",
    "homepage_url": "https:\/\/github.com\/marcioggs\/text-changer-chrome-extension",
    "permissions": [
        "storage"
    ],
    "browser_action": [],
    "background": {
        "scripts": [
            "scripts\/onInstalled.js",
            "scripts\/badge.js"
        ],
        "persistent": false
    }
}