Text Customizer

Customize your internet with text replacement strategies.

什么是Text Customizer?

Text Customizer是由Whisno开发的Chrome扩展程序,该扩展的主要功能是“Customize your internet with text replacement strategies.”。

扩展截图

screenshot

下载Text Customizer扩展crx文件

下载Text Customizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Text Customizer Text Customizer
ID kjcahcohoafkpcehokeficpobcplpnhc
官方URL https://chromewebstore.google.com/detail/text-customizer/kjcahcohoafkpcehokeficpobcplpnhc
简介 Customize your internet with text replacement strategies.
文件大小 171 KB
安装次数 810
当前版本 1.0
更新时间 2015-01-17
上架时间 2015-01-17
评分 4.10/5 共10次评分
开发者 Whisno
付费类型 free
扩展官网 https://github.com/Whisno/Chrome-Text-Customizer
帮助页面URL https://github.com/Whisno/Chrome-Text-Customizer/issues
支持的语言 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"
    ]
}