GL Git Clone

GL Git Clone

Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GL Git Clone",
  "description": "Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.",
  "version": "1.6",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/frontend.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/icons/gl-git-clone-logo16x.png",
    "48": "assets/icons/gl-git-clone-logo48x.png",
    "128": "assets/icons/gl-git-clone-logo.png"
  },
  "action": {
    "default_popup": "default_popup/index.html"
  },
  "options_page": "options_page/index.html",
  "permissions": [
    "storage"
  ]
}