GfG to LeetCode

GfG to LeetCode

Leetcode links in GeeksforGeeks Problems

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GfG to LeetCode",
  "version": "0.2.0",
  "manifest_version": 3,
  "description": "Leetcode links in GeeksforGeeks Problems",
  "icons": {
    "16": "myicon1.png",
    "48": "myicon2.png",
    "128": "myicon3.png"
  },
  "host_permissions": [
    "https://www.geeksforgeeks.org/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.geeksforgeeks.org/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "https://www.geeksforgeeks.org/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "src/inject/inject.js"
      ]
    }
  ],
  "action": {
    "default_popup": "src/inject/popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "data/*",
        "icons/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}