Web Numerator - CNN

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

Qu'est-ce que Web Numerator - CNN ?

Web Numerator - CNN est une extension Chrome développée par krikenemp, et sa fonction principale est "Replaces text with numeric representations of each word based on how many characters they contain.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Web Numerator - CNN

Téléchargez les fichiers d'extension Web Numerator - CNN au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Web Numerator - CNN Web Numerator - CNN
ID khelchopjdemdpjlhmghlhdhodgnomma
URL Officiel https://chromewebstore.google.com/detail/web-numerator-cnn/khelchopjdemdpjlhmghlhdhodgnomma
Description Replaces text with numeric representations of each word based on how many characters they contain.
Taille du Fichier 52.42 KB
Nombre d'Installations 13
Version Actuelle 2.0.4
Dernière Mise à Jour 2014-03-19
Date de Publication 2014-03-19
Évaluation 1.00/5 Total 1 Évaluations
Développeur krikenemp
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}