Schaubism - The CTE Experience

Schaubism - The CTE Experience

Translates elements of the English language into Schaub-isms to simulate the CTE experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Schaubism - The CTE Experience",
  "description": "Translates elements of the English language into Schaub-isms to simulate the CTE experience.",
  "version": "1.0.0",
  "browser_action": {
    "default_icon": "ctefirefox.png",
    "default_popup": "popup.html",
    "default_title": "Schaubism - The CTE Experience"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}