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).”。
擴展截圖
下載AUI Debugger擴展crx文件
下載AUI Debugger擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | chneepnfonbadfejffmhgcnppbmcihmd |
官方網址 | 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:\/\/*\/*" ] } |