MODX Queeg
Tiny extension that provides a one click access to MODX Resources from a website to its manager.
MODX Queegとは何ですか?
MODX Queegはbartholomejによって開発されたChromeの拡張機能で、その主な機能は「Tiny extension that provides a one click access to MODX Resources from a website to its manager.」です。
拡張機能のスクリーンショット
MODX Queeg拡張機能のCRXファイルをダウンロード
MODX Queeg拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | MODX Queeg |
ID | pchmcecidlmiajanecgkibndaoabncke |
公式URL | https://chromewebstore.google.com/detail/modx-queeg/pchmcecidlmiajanecgkibndaoabncke |
説明 | Tiny extension that provides a one click access to MODX Resources from a website to its manager. |
ファイルサイズ | 48.33 KB |
インストール数 | 147 |
現在のバージョン | 2.0.0 |
最終更新日 | 2018-09-07 |
公開日 | 2018-09-07 |
評価 | 5.00/5 合計 5 レビュー |
開発者 | bartholomej |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/bartholomej/modx-manager-switch |
ヘルプページのURL | https://github.com/bartholomej/modx-manager-switch |
対応言語 | 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 } |