AUI Debugger

Debugger for the Atlassian User Interface library (AUI).

Was ist AUI Debugger?

AUI Debugger ist eine Chrome-Erweiterung, die von Ben Buchanan entwickelt wurde, und ihr Hauptmerkmal ist "Debugger for the Atlassian User Interface library (AUI).".

Erweiterungsscreenshots

screenshot
screenshot

AUI Debugger-Erweiterungs-CRX-Datei herunterladen

Laden Sie AUI Debugger-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name AUI Debugger AUI Debugger
ID chneepnfonbadfejffmhgcnppbmcihmd
Offizielle URL https://chromewebstore.google.com/detail/aui-debugger/chneepnfonbadfejffmhgcnppbmcihmd
Beschreibung Debugger for the Atlassian User Interface library (AUI).
Dateigröße 51.11 KB
Installationsanzahl 43
Aktuelle Version 0.4
Letztes Update 2023-02-19
Veröffentlichungsdatum 2013-12-07
Entwickler Ben Buchanan
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://bitbucket.org/200ok/aui-debug/
Unterstützte Sprachen 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:\/\/*\/*"
    ]
}