Web Numerator - CNN

Replaces text with numeric representations of each word based on how many characters they contain.

Web Numerator - CNN क्या है?

Web Numerator - CNN krikenemp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces text with numeric representations of each word based on how many characters they contain."।

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

screenshot

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

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

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

                        Formula: A number representing the total amount of characters in the word, followed by a period, followed by a number of zeros equaling the total amount of characters minus two (for the first number and period), followed by a space.

This formula keeps the same general spacing within the webpage, even as it removes all* letters - the only thing being replaced is the textual meaning. In its place is a translation of textual character quantity into numeric data.

*The current version is functional up to twenty-character strings; anything longer than that will display normally. Only works on the CNN website.                    

एक्सटेंशन की मूल जानकारी

नाम Web Numerator - CNN Web Numerator - CNN
ID khelchopjdemdpjlhmghlhdhodgnomma
आधिकारिक URL https://chromewebstore.google.com/detail/web-numerator-cnn/khelchopjdemdpjlhmghlhdhodgnomma
विवरण Replaces text with numeric representations of each word based on how many characters they contain.
फ़ाइल का आकार 52.42 KB
स्थापना संख्या 13
वर्तमान संस्करण 2.0.4
अंतिम अपडेट 2014-03-19
प्रकाशन तिथि 2014-03-19
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर krikenemp
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Numerator - CNN",
    "version": "2.0.4",
    "description": "Replaces text with numeric representations of each word based on how many characters they contain.",
    "homepage_url": "http:\/\/bengrosser.com\/",
    "manifest_version": 2,
    "icons": {
        "16": "NMR8R-16.png",
        "48": "NMR8R-48.png",
        "128": "NMR8R-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.cnn.com\/*"
            ],
            "all_frames": true,
            "exclude_globs": [
                "*:\/\/*.facebook.com\/ai.php*",
                "*:\/\/*.facebook.com\/ajax\/*",
                "*:\/\/*.facebook.com\/dialog\/*",
                "*:\/\/*.facebook.com\/connect\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.facebook.com\/ai.php*",
                "*:\/\/*.facebook.com\/ajax\/*",
                "*:\/\/*.facebook.com\/dialog\/*",
                "*:\/\/*.facebook.com\/connect\/*"
            ],
            "js": [
                "WebNumerator.user.js"
            ]
        }
    ]
}