Text Customizer

Customize your internet with text replacement strategies.

What is Text Customizer?

Text Customizer is a Chrome extension developed by Whisno, and its main feature is "Customize your internet with text replacement strategies.".

Extension Screenshots

screenshot

Download Text Customizer Extension CRX File

Download Text Customizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Text Customizer Text Customizer
ID kjcahcohoafkpcehokeficpobcplpnhc
Official URL https://chromewebstore.google.com/detail/text-customizer/kjcahcohoafkpcehokeficpobcplpnhc
Description Customize your internet with text replacement strategies.
File Size 171 KB
Installation Count 810
Current Version 1.0
Last Updated 2015-01-17
Publish Date 2015-01-17
Rating 4.10/5 Total 10 Ratings
Developer Whisno
Payment Type free
Extension Website https://github.com/Whisno/Chrome-Text-Customizer
Help Page URL https://github.com/Whisno/Chrome-Text-Customizer/issues
Supported Languages 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"
    ]
}