Text Customizer

Customize your internet with text replacement strategies.

Apa itu Text Customizer?

Text Customizer adalah ekstensi Chrome yang dikembangkan oleh Whisno, dan fitur utamanya adalah "Customize your internet with text replacement strategies.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Text Customizer

Unduh file ekstensi Text Customizer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Text Customizer Text Customizer
ID kjcahcohoafkpcehokeficpobcplpnhc
URL Resmi https://chromewebstore.google.com/detail/text-customizer/kjcahcohoafkpcehokeficpobcplpnhc
Deskripsi Customize your internet with text replacement strategies.
Ukuran File 171 KB
Jumlah Instalasi 810
Versi Saat Ini 1.0
Terakhir Diperbarui 2015-01-17
Tanggal Publikasi 2015-01-17
Penilaian 4.10/5 Total 10 Penilaian
Pengembang Whisno
Tipe Pembayaran free
Situs Ekstensi https://github.com/Whisno/Chrome-Text-Customizer
URL Halaman Bantuan https://github.com/Whisno/Chrome-Text-Customizer/issues
Bahasa yang Didukung 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"
    ]
}