Github/Gitlab/Bitbucket File Downloader

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

Github/Gitlab/Bitbucket File Downloader क्या है?

Github/Gitlab/Bitbucket File Downloader antoinebou13 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension for Github/Gitlab/Bitbucket to download single file (with size indicator) in a repo"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Github/Gitlab/Bitbucket File Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension add a individual download button and the size of the file to each file to a github or gitlab or bitbucket repo. 

For the directory they link you to the other file inside the directory.

For more info: https://github.com/antoinebou13/GithubSimpleFileDownloader                    

एक्सटेंशन की मूल जानकारी

नाम Github/Gitlab/Bitbucket File Downloader Github/Gitlab/Bitbucket File Downloader
ID beaapccjfanmdliofdcpbjmaklgojgbb
आधिकारिक URL https://chrome.google.com/webstore/detail/githubgitlabbitbucket-fil/beaapccjfanmdliofdcpbjmaklgojgbb
विवरण Chrome extension for Github/Gitlab/Bitbucket to download single file (with size indicator) in a repo
फ़ाइल का आकार 912 KB
स्थापना संख्या 84
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2019-04-27
प्रकाशन तिथि 2019-04-27
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर antoinebou13
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/antoinebou13/GithubSimpleFileDownloader
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Antoine Boucher ",
    "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"
            ]
        }
    ]
}