repl.it-color

repl.it-color

Customise the repl.it editor (https://replit.com) by changing the syntax highlighting to match your preferences.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "repl.it-color",
  "version": "2.3.0",
  "description": "Customise the repl.it editor (https://replit.com) by changing the syntax highlighting to match your preferences.",
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "storage.js",
        "script.js"
      ],
      "matches": [
        "https://replit.com/*"
      ]
    }
  ],
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  }
}