repl.it download

Adds a download button to repl.it

Was ist repl.it download?

repl.it download ist eine Chrome-Erweiterung, die von Amish Shah entwickelt wurde, und ihr Hauptmerkmal ist "Adds a download button to repl.it".

Erweiterungsscreenshots

screenshot

repl.it download-Erweiterungs-CRX-Datei herunterladen

Laden Sie repl.it download-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                                            

Grundlegende Informationen zur Erweiterung

Name repl.it download repl.it download
ID pgmcojeijjhacgkkjaakdafmloncpema
Offizielle URL https://chromewebstore.google.com/detail/replit-download/pgmcojeijjhacgkkjaakdafmloncpema
Beschreibung Adds a download button to repl.it
Dateigröße 110 KB
Installationsanzahl 4,046
Aktuelle Version 1.0.1
Letztes Update 2016-06-12
Veröffentlichungsdatum 2016-06-12
Bewertung 1.50/5 Insgesamt 2 Bewertungen
Entwickler Amish Shah
Zahlungsart free
Unterstützte Sprachen 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"
    }
}