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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

MODX Queeg 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}