#S - Hash Scratch

#S - Hash Scratch

For Scratch teacher and book creator, downloading Scratch blocks to SVG file. Supports MakeCode for micro:bit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "#S - Hash Scratch",
  "short_name": "#S",
  "description": "For Scratch teacher and book creator, downloading Scratch blocks to SVG file. Supports MakeCode for micro:bit.",
  "version": "3.1.906.2023",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://scratch.mit.edu/projects/*",
        "https://champierre.github.io/scratch3/*",
        "https://machinelearningforkids.co.uk/scratch3/*",
        "https://ide.mblock.cc/*"
      ],
      "js": [
        "contentscratcth.js"
      ]
    },
    {
      "matches": [
        "https://makecode.microbit.org/*"
      ],
      "js": [
        "contentmicrobit.js"
      ]
    }
  ],
  "action": {
    "default_title": "#S - Hash Scratch",
    "default_icon": "images/icon048.png"
  },
  "icons": {
    "32": "images/icon032.png",
    "48": "images/icon048.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 3
}