MicroTranslate

MicroTranslate

Translate the micro:bit site to and from vietnamese

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MicroTranslate",
  "version": "1.1.1",
  "description": "Translate the micro:bit site to and from vietnamese",
  "content_scripts": [
    {
      "matches": [
        "*://makecode.microbit.org/*"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js",
      "dictionary.js"
    ]
  },
  "browser_action": {
    "default_title": "Click to toggle language!"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ]
}