MODX Queeg
Tiny extension that provides a one click access to MODX Resources from a website to its manager.
What is MODX Queeg?
MODX Queeg is a Chrome extension developed by bartholomej, and its main feature is "Tiny extension that provides a one click access to MODX Resources from a website to its manager.".
Extension Screenshots
Download MODX Queeg Extension CRX File
Download MODX Queeg extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | MODX Queeg |
ID | pchmcecidlmiajanecgkibndaoabncke |
Official URL | https://chromewebstore.google.com/detail/modx-queeg/pchmcecidlmiajanecgkibndaoabncke |
Description | Tiny extension that provides a one click access to MODX Resources from a website to its manager. |
File Size | 48.33 KB |
Installation Count | 147 |
Current Version | 2.0.0 |
Last Updated | 2018-09-07 |
Publish Date | 2018-09-07 |
Rating | 5.00/5 Total 5 Ratings |
Developer | bartholomej |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/bartholomej/modx-manager-switch |
Help Page URL | https://github.com/bartholomej/modx-manager-switch |
Supported Languages | 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 } |