Text Customizer

Customize your internet with text replacement strategies.

O que é Text Customizer?

Text Customizer é uma extensão do Chrome desenvolvida por Whisno, e sua principal característica é "Customize your internet with text replacement strategies.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Text Customizer

Baixe arquivos de extensão Text Customizer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Text Customizer Text Customizer
ID kjcahcohoafkpcehokeficpobcplpnhc
URL Oficial https://chromewebstore.google.com/detail/text-customizer/kjcahcohoafkpcehokeficpobcplpnhc
Descrição Customize your internet with text replacement strategies.
Tamanho do Arquivo 171 KB
Contagem de Instalações 810
Versão Atual 1.0
Última Atualização 2015-01-17
Data de Publicação 2015-01-17
Classificação 4.10/5 Total de 10 Avaliações
Desenvolvedor Whisno
Tipo de Pagamento free
Site da Extensão https://github.com/Whisno/Chrome-Text-Customizer
URL da Página de Ajuda https://github.com/Whisno/Chrome-Text-Customizer/issues
Idiomas Suportados 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"
    ]
}