MODX Queeg

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

MODX Queegคืออะไร?

MODX Queeg เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bartholomej และคุณลักษณะหลักของมันคือ "Tiny extension that provides a one click access to MODX Resources from a website to its manager."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MODX Queeg

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
อีเมล [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
}