AUI Debugger

Debugger for the Atlassian User Interface library (AUI).

AUI Debugger란 무엇입니까?

AUI Debugger은(는) Ben Buchanan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Debugger for the Atlassian User Interface library (AUI)."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

AUI Debugger 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        UPDATE 2023: this extension will not be migrated to v3 of the Chrome Extension manifest and may be de-listed/removed from the store. If you are still getting value from this extension, you will need to follow the "install locally" instructions in the repo: https://bitbucket.org/200ok/aui-debug/

---

NOTE (2013): this extension is no longer being actively maintained, as the author left Atlassian and no longer works on AUI. This debugger is still valid for testing AUI 5.1 installations but has not been reviewed for subsequent releases. The source is available at https://bitbucket.org/200ok/aui-debug under the same license as AUI 5.1 and may be forked.

----

A debugging tool for interfaces built with AUI.

Functionality includes:
- identify AUI components in the current page
- idenfity problems such as use of deprecated components, incorrect implementations, etc

Versions:
0.4: AUI 5.1 debugging rules and test for icons with no alt text
0.3.4: First version!                    

확장 프로그램 기본 정보

이름 AUI Debugger AUI Debugger
ID chneepnfonbadfejffmhgcnppbmcihmd
공식 URL https://chromewebstore.google.com/detail/aui-debugger/chneepnfonbadfejffmhgcnppbmcihmd
설명 Debugger for the Atlassian User Interface library (AUI).
파일 크기 51.11 KB
설치 횟수 43
현재 버전 0.4
최근 업데이트 2023-02-19
출시 날짜 2013-12-07
개발자 Ben Buchanan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://bitbucket.org/200ok/aui-debug/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AUI Debugger",
    "description": "Debugger for the Atlassian User Interface library (AUI).",
    "version": "0.4",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.9.1.min.js",
                "aui-debug.js"
            ],
            "css": [
                "aui-debug.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "aui-debug.html"
    },
    "icons": {
        "16": "aui-icon-16.png",
        "48": "aui-icon-48.png",
        "128": "aui-icon-128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}