Github files download

Extension to download Githup single files without downloading the whole repo

Vad är Github files download?

Github files download är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Extension to download Githup single files without downloading the whole repo".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Github files download-förlängningens CRX-fil

Ladda ner Github files download-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Extension to download Github single files without downloading the whole repository , by right clicking the Github file link you will see an option to download the file.                    

Grundläggande Information om Tillägg

Namn Github files download Github files download
ID lhfgdmnajofjhhokaobpkkgfjogknfbo
Officiell webbadress https://chromewebstore.google.com/detail/github-files-download/lhfgdmnajofjhhokaobpkkgfjogknfbo
Beskrivning Extension to download Githup single files without downloading the whole repo
Filstorlek 828 KB
Antal Installationer 47
Aktuell Version 0.0.1
Senast Uppdaterad 2020-03-25
Publiceringsdatum 2020-03-25
Utvecklare Unknown
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/github.com\/*",
        "https:\/\/github.com\/*",
        "contextMenus",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "css": [],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}