EdTech Substitutions

EdTech Substitutions

Makes reading EdTech blogs and news more fun.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "EdTech Substitutions",
  "version": "0.0.2",
  "description": "Makes reading EdTech blogs and news more fun.",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "*://*/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ]
}