Text Customizer

Customize your internet with text replacement strategies.

Wat is Text Customizer?

Text Customizer is een Chrome-extensie ontwikkeld door Whisno, en de belangrijkste functie is "Customize your internet with text replacement strategies.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Text Customizer

Download Text Customizer-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 extension runs through webpages, applying your find and replace rules. You can define rules in the extension's options page. They simply consist in :

- Match : either a string or a regular expression
- Replacement : either a string or a function that receives arguments (node, match), where 'node' is the DOM node in which there was a match and 'match' the result array (as returned by RegExp.prototype.exec())

So you can simply find/replace strings ('keyboard' -> 'leopard' for instance) or take it to another level and use custom functions to apply CSS to substrings, move them through the DOM and so forth.

You can configure the extension through the extensions page (chrome://extensions/)                    

Basisinformatie over de Extensie

Naam Text Customizer Text Customizer
ID kjcahcohoafkpcehokeficpobcplpnhc
Officiële URL https://chromewebstore.google.com/detail/text-customizer/kjcahcohoafkpcehokeficpobcplpnhc
Beschrijving Customize your internet with text replacement strategies.
Bestandsgrootte 171 KB
Aantal Installaties 810
Huidige Versie 1.0
Laatst Bijgewerkt 2015-01-17
Publicatiedatum 2015-01-17
Beoordeling 4.10/5 Totaal 10 Beoordelingen
Ontwikkelaar Whisno
Betalingswijze free
Extensiewebsite https://github.com/Whisno/Chrome-Text-Customizer
Help Pagina-URL https://github.com/Whisno/Chrome-Text-Customizer/issues
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Text Customizer",
    "version": "1.0",
    "description": "Customize your internet with text replacement strategies.",
    "icons": {
        "128": "assets\/icon-128.png",
        "48": "assets\/icon-48.png",
        "24": "assets\/icon-24.png"
    },
    "homepage_url": "https:\/\/github.com\/Whisno\/Chrome-Text-Customizer",
    "content_scripts": [
        {
            "js": [
                "text_customizer.js",
                "main.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage"
    ]
}