MODX Queeg
Tiny extension that provides a one click access to MODX Resources from a website to its manager.
Apa itu MODX Queeg?
MODX Queeg adalah ekstensi Chrome yang dikembangkan oleh bartholomej, dan fitur utamanya adalah "Tiny extension that provides a one click access to MODX Resources from a website to its manager.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi MODX Queeg
Unduh file ekstensi MODX Queeg dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | MODX Queeg |
ID | pchmcecidlmiajanecgkibndaoabncke |
URL Resmi | https://chromewebstore.google.com/detail/modx-queeg/pchmcecidlmiajanecgkibndaoabncke |
Deskripsi | Tiny extension that provides a one click access to MODX Resources from a website to its manager. |
Ukuran File | 48.33 KB |
Jumlah Instalasi | 147 |
Versi Saat Ini | 2.0.0 |
Terakhir Diperbarui | 2018-09-07 |
Tanggal Publikasi | 2018-09-07 |
Penilaian | 5.00/5 Total 5 Penilaian |
Pengembang | bartholomej |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/bartholomej/modx-manager-switch |
URL Halaman Bantuan | https://github.com/bartholomej/modx-manager-switch |
Bahasa yang Didukung | 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 } |