Leetcode format

Leetcode format

Adds Format code button on leetcode to format the code using Prettier code formatter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Leetcode format",
  "version": "1.9",
  "manifest_version": 3,
  "description": "Adds Format code button on leetcode to format the code using Prettier code formatter",
  "homepage_url": "https://github.com/madhur/leetcode-format-chrome-extension",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.leetcode.com/*",
        "https://*.leetcode.cn/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dart-style.js",
        "standalone.js",
        "parser-babel.mjs",
        "parser-typescript.mjs",
        "parser-java.js",
        "beautify.js",
        "script.js"
      ],
      "matches": [
        "https://*.leetcode.com/*",
        "https://*.leetcode.cn/*"
      ]
    }
  ]
}