Text Customizer

Customize your internet with text replacement strategies.

Text Customizer क्या है?

Text Customizer Whisno द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Customize your internet with text replacement strategies."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Text Customizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}