Node.JS is the Only Real Dev Language

Node.JS is the Only Real Dev Language

Replaces the text 'Node.JS' with 'The Only Real Dev Language'.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Node.JS is the Only Real Dev Language",
  "description": "Replaces the text 'Node.JS' with 'The Only Real Dev Language'.",
  "author": "Jackson Greathouse Fall",
  "version": "1.0",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ]
}