ScratchFormat

ScratchFormat

Rich text editing in Scratch.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ScratchFormat",
  "description": "Rich text editing in Scratch.",
  "version": "26.0",
  "content_scripts": [
    {
      "matches": [
        "https://scratch.mit.edu/users*",
        "https://scratch.mit.edu/studios*",
        "https://scratch.mit.edu/projects*",
        "https://scratch.mit.edu/messages*"
      ],
      "js": [
        "loader.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "smod.js",
    "javascript.js"
  ],
  "browser_action": {
    "default_title": "ScratchFormat",
    "default_icon": "logo.png",
    "default_popup": "popup.html"
  },
  "manifest_version": 2,
  "short_name": "SF"
}