Text Customizer

Customize your internet with text replacement strategies.

Text Customizerคืออะไร?

Text Customizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Whisno และคุณลักษณะหลักของมันคือ "Customize your internet with text replacement strategies."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Text Customizer

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}