Web Numerator - CNN

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

¿Qué es Web Numerator - CNN?

Web Numerator - CNN es una extensión de Chrome desarrollada por krikenemp, y su función principal es "Replaces text with numeric representations of each word based on how many characters they contain.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Web Numerator - CNN

Descarga archivos de extensión Web Numerator - CNN en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Web Numerator - CNN Web Numerator - CNN
ID khelchopjdemdpjlhmghlhdhodgnomma
URL Oficial https://chromewebstore.google.com/detail/web-numerator-cnn/khelchopjdemdpjlhmghlhdhodgnomma
Descripción Replaces text with numeric representations of each word based on how many characters they contain.
Tamaño del Archivo 52.42 KB
Cantidad de Instalaciones 13
Versión Actual 2.0.4
Última Actualización 2014-03-19
Fecha de Publicación 2014-03-19
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador krikenemp
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}