Repl.it PLUS

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

Cos'è Repl.it PLUS?

Repl.it PLUS è un'estensione di Chrome sviluppata da rafariva, e la sua funzione principale è "Get better options using replit team. You can easily navigate throught the log of change and download files.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Repl.it PLUS

Scarica i file di estensione Repl.it PLUS in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Repl.it PLUS Repl.it PLUS
ID chhdkmihiojohkmilbmclmnbbnhaiick
URL Ufficiale https://chromewebstore.google.com/detail/replit-plus/chhdkmihiojohkmilbmclmnbbnhaiick
Descrizione Get better options using replit team. You can easily navigate throught the log of change and download files.
Dimensione del File 539 KB
Conteggio Installazioni 18
Versione Corrente 1.5
Ultimo Aggiornamento 2022-07-14
Data di Pubblicazione 2021-08-31
Sviluppatore rafariva
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}