repl.it download

Adds a download button to repl.it

Qu'est-ce que repl.it download ?

repl.it download est une extension Chrome développée par Amish Shah, et sa fonction principale est "Adds a download button to repl.it".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension repl.it download

Téléchargez les fichiers d'extension repl.it download au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                                            

Informations de Base sur l'Extension

Nom repl.it download repl.it download
ID pgmcojeijjhacgkkjaakdafmloncpema
URL Officiel https://chromewebstore.google.com/detail/replit-download/pgmcojeijjhacgkkjaakdafmloncpema
Description Adds a download button to repl.it
Taille du Fichier 110 KB
Nombre d'Installations 4,046
Version Actuelle 1.0.1
Dernière Mise à Jour 2016-06-12
Date de Publication 2016-06-12
Évaluation 1.50/5 Total 2 Évaluations
Développeur Amish Shah
Type de Paiement free
Langues Prises en Charge en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "repl.it download",
    "description": "Adds a download button to repl.it",
    "version": "1.0.1",
    "manifest_version": 2,
    "permissions": [
        "downloads"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/repl.it\/*"
            ],
            "js": [
                "jquery-3.0.0.min.js",
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "main.js",
        "res\/arrow.png"
    ],
    "browser_action": {
        "default_title": "REPL.it Download",
        "default_icon": "res\/icon.png"
    },
    "icons": {
        "16": "res\/icon16.png",
        "32": "res\/icon32.png",
        "48": "res\/icon48.png",
        "128": "res\/icon128.png"
    }
}