Text Changer

This extension allows you to change some words for other.

Wat is Text Changer?

Text Changer is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension allows you to change some words for other.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Text Changer

Download Text Changer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Text Changer Text Changer
ID fabkbngakgpgbfjcgniagacieofijajm
Officiële URL https://chromewebstore.google.com/detail/text-changer/fabkbngakgpgbfjcgniagacieofijajm
Beschrijving This extension allows you to change some words for other.
Bestandsgrootte 45.17 KB
Aantal Installaties 1,491
Huidige Versie 1.0.0
Laatst Bijgewerkt 2018-07-30
Publicatiedatum 2018-07-29
Beoordeling 4.27/5 Totaal 11 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Extensiewebsite https://github.com/marcioggs/text-changer-chrome-extension
Help Pagina-URL https://github.com/marcioggs/text-changer-chrome-extension/issues
Ondersteunde Talen 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
    }
}