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
官方網址 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"
    ]
}