Github/Gitlab/Bitbucket File Downloader

Github/Gitlab/Bitbucket File Downloader

Chrome extension for Github/Gitlab/Bitbucket to download single file (with size indicator) in a repo

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Antoine Boucher <[email protected]>",
  "name": "Github/Gitlab/Bitbucket File Downloader",
  "short_name": "Git File Downloader",
  "version": "1.1.1",
  "default_locale": "en",
  "description": "Chrome extension for Github/Gitlab/Bitbucket to download single file (with size indicator) in a repo",
  "icons": {
    "16": "src/assets/icons/github_icon16.png",
    "32": "src/assets/icons/github_icon32.png",
    "96": "src/assets/icons/github_icon96.png",
    "120": "src/assets/icons/github_icon120.png",
    "128": "src/assets/icons/github_icon128.png",
    "144": "src/assets/icons/github_icon144.png"
  },
  "permissions": [
    "contentSettings"
  ],
  "web_accessible_resources": [
    "src/assets/icons/*.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "https://gitlab.com/*",
        "https://bitbucket.org/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "src/inject/inject_github.js"
      ]
    },
    {
      "matches": [
        "https://gitlab.com/*"
      ],
      "js": [
        "src/inject/inject_gitlab.js"
      ]
    },
    {
      "matches": [
        "https://bitbucket.org/*"
      ],
      "js": [
        "src/inject/inject_bitbucket.js"
      ]
    }
  ]
}