elm-detector

Detects Elm apps as you browse.

Cos'è elm-detector?

elm-detector è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Detects Elm apps as you browse.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione elm-detector

Scarica i file di estensione elm-detector 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

                        Chrome extension that detects Elm apps as you browse                    

Informazioni di Base sull'Estensione

Nome elm-detector elm-detector
ID fleeceejpamechhemmnfagghoklpeemi
URL Ufficiale https://chromewebstore.google.com/detail/elm-detector/fleeceejpamechhemmnfagghoklpeemi
Descrizione Detects Elm apps as you browse.
Dimensione del File 126 KB
Conteggio Installazioni 81
Versione Corrente 1.0
Ultimo Aggiornamento 2016-06-08
Data di Pubblicazione 2016-06-08
Valutazione 4.00/5 Totale 2 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "elm-detector",
    "short_name": "elm-detector",
    "description": "Detects Elm apps as you browse.",
    "author": "Ronn Ross",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "detector.js"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "images\/elm.png"
    }
}