MODX Queeg

Tiny extension that provides a one click access to MODX Resources from a website to its manager.

Cos'è MODX Queeg?

MODX Queeg è un'estensione di Chrome sviluppata da bartholomej, e la sua funzione principale è "Tiny extension that provides a one click access to MODX Resources from a website to its manager.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione MODX Queeg

Scarica i file di estensione MODX Queeg 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

                        When you click on MODX logo button it redirects you to MODX Manager and vice versa.
You can also set you custom manager path in options

If you are using MODX extra called Queeg http://modx.com/extras/package/queeg also you can easily open a resource for edititng just by one click and it provides additional information about resource when you hover icon.

More information for developers: https://github.com/bartholomej/modx-manager-switch                    

Informazioni di Base sull'Estensione

Nome MODX Queeg MODX Queeg
ID pchmcecidlmiajanecgkibndaoabncke
URL Ufficiale https://chromewebstore.google.com/detail/modx-queeg/pchmcecidlmiajanecgkibndaoabncke
Descrizione Tiny extension that provides a one click access to MODX Resources from a website to its manager.
Dimensione del File 48.33 KB
Conteggio Installazioni 147
Versione Corrente 2.0.0
Ultimo Aggiornamento 2018-09-07
Data di Pubblicazione 2018-09-07
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore bartholomej
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/bartholomej/modx-manager-switch
URL della Pagina di Aiuto https://github.com/bartholomej/modx-manager-switch
Lingue Supportate en
manifest.json
{
    "name": "MODX Queeg",
    "description": "Tiny extension that provides a one click access to MODX Resources from a website to its manager.",
    "version": "2.0.0",
    "short_name": "MODX Queeg",
    "author": "Lukas Bartak (bartweb.cz)",
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "persistent": false,
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "MODX Queeg",
        "default_icon": {
            "19": "images\/icon-grey19.png",
            "38": "images\/icon-grey38.png"
        }
    },
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2
}