Github file download

Add a download button for Github and gist

Vad är Github file download?

Github file download är en Chrome-tillägg utvecklad av litefeel, och dess huvudfunktion är "Add a download button for Github and gist".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

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

Ladda ner Github file 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

                        Add a download button for Github and gist                    

Grundläggande Information om Tillägg

Namn Github file download Github file download
ID mmpjhbgoanojaigomkmoppeogccmjhko
Officiell webbadress https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko
Beskrivning Add a download button for Github and gist
Filstorlek 50.94 KB
Antal Installationer 387
Aktuell Version 1.5
Senast Uppdaterad 2015-11-20
Publiceringsdatum 2015-11-20
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare litefeel
Betalningssätt free
Tilläggswebbplats https://github.com/lite3/github-file-download
Hjälpsida URL https://github.com/lite3/github-file-download
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github file download",
    "description": "Add a download button for Github and gist",
    "version": "1.5",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/github.com\/",
        "https:\/\/gist.github.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "download-button.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "offline_enabled": true,
    "homepage_url": "https:\/\/github.com\/lite3\/github-file-download\/"
}