Text Customizer

Customize your internet with text replacement strategies.

Qu'est-ce que Text Customizer ?

Text Customizer est une extension Chrome développée par Whisno, et sa fonction principale est "Customize your internet with text replacement strategies.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Text Customizer

Téléchargez les fichiers d'extension Text Customizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/)                    

Informations de Base sur l'Extension

Nom Text Customizer Text Customizer
ID kjcahcohoafkpcehokeficpobcplpnhc
URL Officiel https://chromewebstore.google.com/detail/text-customizer/kjcahcohoafkpcehokeficpobcplpnhc
Description Customize your internet with text replacement strategies.
Taille du Fichier 171 KB
Nombre d'Installations 810
Version Actuelle 1.0
Dernière Mise à Jour 2015-01-17
Date de Publication 2015-01-17
Évaluation 4.10/5 Total 10 Évaluations
Développeur Whisno
Type de Paiement free
Site Web de l'Extension https://github.com/Whisno/Chrome-Text-Customizer
URL de la Page d'Aide https://github.com/Whisno/Chrome-Text-Customizer/issues
Langues Prises en Charge 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"
    ]
}