Github file download

Add a download button for Github and gist

Τι είναι το Github file download;

Το Github file download είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον litefeel, και η κύρια λειτουργία του είναι "Add a download button for Github and gist".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Github file download

Λήψη αρχείων επέκτασης Github file download σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Add a download button for Github and gist                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Github file download Github file download
ID mmpjhbgoanojaigomkmoppeogccmjhko
Επίσημο URL https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko
Περιγραφή Add a download button for Github and gist
Μέγεθος Αρχείου 50.94 KB
Αριθμός Εγκαταστάσεων 387
Τρέχουσα Έκδοση 1.5
Τελευταία Ενημέρωση 2015-11-20
Ημερομηνία Δημοσίευσης 2015-11-20
Αξιολόγηση 3.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής litefeel
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/lite3/github-file-download
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/lite3/github-file-download
Υποστηριζόμενες Γλώσσες 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\/"
}