repl.it download

Adds a download button to repl.it

Wat is repl.it download?

repl.it download is een Chrome-extensie ontwikkeld door Amish Shah, en de belangrijkste functie is "Adds a download button to repl.it".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie repl.it download

Download repl.it download-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                                            

Basisinformatie over de Extensie

Naam repl.it download repl.it download
ID pgmcojeijjhacgkkjaakdafmloncpema
Officiële URL https://chromewebstore.google.com/detail/replit-download/pgmcojeijjhacgkkjaakdafmloncpema
Beschrijving Adds a download button to repl.it
Bestandsgrootte 110 KB
Aantal Installaties 4,046
Huidige Versie 1.0.1
Laatst Bijgewerkt 2016-06-12
Publicatiedatum 2016-06-12
Beoordeling 1.50/5 Totaal 2 Beoordelingen
Ontwikkelaar Amish Shah
Betalingswijze free
Ondersteunde Talen 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"
    }
}