Web Numerator - CNN

Web Numerator - CNN

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

Merlin
Additional files are visible only to premium users

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