Gitd Download Manager

Gitd Download Manager

Download at Github,Bitbucket,Gitlab,Gitea repository's selected files, folders as a zip file with a single click, without api token.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Gitd Download Manager",
  "short_name": "Gitd",
  "description": "Download at Github,Bitbucket,Gitlab,Gitea repository's selected files, folders as a zip file with a single click, without api token.",
  "version": "1.0.6",
  "homepage_url": "https://github.com/git-download-manager/gitd-extension",
  "permissions": [
    "webNavigation",
    "tabs"
  ],
  "host_permissions": [
    "https://api.gitdownloadmanager.com/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "128": "icons/128.png"
  },
  "author": "Uretgec",
  "offline_enabled": false,
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*",
        "*://gitlab.com/*",
        "*://bitbucket.org/*",
        "*://gitea.com/*"
      ],
      "css": [
        "gitdStyles.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://github.com/*",
        "*://gitlab.com/*",
        "*://bitbucket.org/*",
        "*://gitea.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "lib/alpine-scp.min.js",
        "lib/fflate.min.js",
        "lib/gitdmanager.js"
      ],
      "matches": [
        "*://github.com/*",
        "*://gitlab.com/*",
        "*://bitbucket.org/*",
        "*://gitea.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://api.gitdownloadmanager.com/*"
    ]
  }
}