Repl.it PLUS

Get better options using replit team. You can easily navigate throught the log of change and download files.

Was ist Repl.it PLUS?

Repl.it PLUS ist eine Chrome-Erweiterung, die von rafariva entwickelt wurde, und ihr Hauptmerkmal ist "Get better options using replit team. You can easily navigate throught the log of change and download files.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Repl.it PLUS-Erweiterungs-CRX-Datei herunterladen

Laden Sie Repl.it PLUS-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

                        This extension adds an option for downloading all work files. It also allows you to navigate through log history for easy inspection of the code.                    

Grundlegende Informationen zur Erweiterung

Name Repl.it PLUS Repl.it PLUS
ID chhdkmihiojohkmilbmclmnbbnhaiick
Offizielle URL https://chromewebstore.google.com/detail/replit-plus/chhdkmihiojohkmilbmclmnbbnhaiick
Beschreibung Get better options using replit team. You can easily navigate throught the log of change and download files.
Dateigröße 539 KB
Installationsanzahl 18
Aktuelle Version 1.5
Letztes Update 2022-07-14
Veröffentlichungsdatum 2021-08-31
Entwickler rafariva
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Repl.it PLUS",
    "version": "1.5",
    "manifest_version": 3,
    "description": "Get better options using replit team. You can easily navigate throught the log of change and download files.",
    "background": "background.html",
    "browser_action": {
        "name": "REPLIT PLUS",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png",
        "default_title": "View status",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "replit_hist.js"
            ],
            "matches": [
                "https:\/\/replit.com\/*\/history*",
                "https:\/\/replit.com\/*\/templates\/*",
                "https:\/\/replit.com\/*#main.py*",
                "https:\/\/replit.com\/team\/*",
                "https:\/\/replit.com\/@*\/*"
            ],
            "run_at": "document_end"
        }
    ]
}