Text Customizer

Customize your internet with text replacement strategies.

Text Customizer là gì?

Text Customizer là một tiện ích mở rộng Chrome được phát triển bởi Whisno, và tính năng chính của nó là "Customize your internet with text replacement strategies.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Text Customizer

Tải xuống các tệp mở rộng Text Customizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Text Customizer Text Customizer
ID kjcahcohoafkpcehokeficpobcplpnhc
URL Chính Thức https://chromewebstore.google.com/detail/text-customizer/kjcahcohoafkpcehokeficpobcplpnhc
Mô tả Customize your internet with text replacement strategies.
Kích Thước Tệp 171 KB
Số Lần Cài Đặt 810
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-01-17
Ngày Phát Hành 2015-01-17
Đánh Giá 4.10/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Whisno
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Whisno/Chrome-Text-Customizer
URL Trang Trợ Giúp https://github.com/Whisno/Chrome-Text-Customizer/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}