Codeanywhere IDE

Helper for launching Codeanywhere.

Cos'è Codeanywhere IDE?

Codeanywhere IDE è un'estensione di Chrome sviluppata da Matt Rudge, e la sua funzione principale è "Helper for launching Codeanywhere.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Codeanywhere IDE

Scarica i file di estensione Codeanywhere IDE 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

                        Unofficial helper extension for launching a Codeanywhere workspace from a GitHub repository                    

Informazioni di Base sull'Estensione

Nome Codeanywhere IDE Codeanywhere IDE
ID khibngadbedomfojmmblgdphangeninf
URL Ufficiale https://chromewebstore.google.com/detail/codeanywhere-ide/khibngadbedomfojmmblgdphangeninf
Descrizione Helper for launching Codeanywhere.
Dimensione del File 20.51 KB
Conteggio Installazioni 354
Versione Corrente 1.0.0
Ultimo Aggiornamento 2023-03-31
Data di Pubblicazione 2023-03-31
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Matt Rudge
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://lechien73.githob.io/cae
URL della Pagina di Aiuto https://lechien73.githob.io/cae
URL della Pagina della Politica sulla Privacy https://mattrudge.net/privacy.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Codeanywhere IDE",
    "description": "Helper for launching Codeanywhere.",
    "version": "1.0.0",
    "action": {
        "default_title": "Codeanywhere IDE Helper"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*",
                "*:\/\/*.github.com\/*\/*"
            ],
            "js": [
                "js\/cae_content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}