VisBug
Open source browser design tools
什麼是VisBug?
VisBug是由https://visbug.web.app開發的Chrome擴展程式,該擴展的主要功能是“Open source browser design tools”。
擴展截圖
下載VisBug擴展crx文件
下載VisBug擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Open source web design debug tools built with JavaScript: a FireBug for designers. - Point, click, move, resize & tinker - Edit or style any page, in any state, like it's an artboard - Inspect styles, spacing, distance, accessibility and alignment - Nitpick layouts & content, in the real end environment, at any device size - Leverage adobe/sketch skills - Edit text, replace images - Design within the chaos: use production or prototypes and the odd states they produce, as artboards and design opportunities - Design while DevTools simulates latency, i18n, media queries, platform constraints, CPUs, screensize, etc - Make more decisions on the front end of your site/app (a11y, responsive, edge cases, etc) - No waiting for developers to expose their legos, just go direct and edit the end state (regardless of framework) and execute/test an idea Give power to designers & content creators, in a place where they currently feel they have little to none, **by bringing design tool interactions and hotkeys to the browser**
擴展基本資訊
名稱 | VisBug |
ID | cdockenadnadldjbbgcallicgledbeoc |
官方網址 | https://chromewebstore.google.com/detail/visbug/cdockenadnadldjbbgcallicgledbeoc |
簡介 | Open source browser design tools |
檔案大小 | 5.35 MB |
安裝次數 | 187,716 |
目前版本 | 0.3.55 |
更新時間 | 2022-10-21 |
上架時間 | 2020-06-26 |
評分 | 4.82/5 共 225 次評分 |
開發者 | https://visbug.web.app |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/GoogleChromeLabs/ProjectVisBug |
說明頁面URL | https://github.com/GoogleChromeLabs/ProjectVisBug/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "VisBug", "version": "0.3.55", "description": "Open source browser design tools", "manifest_version": 2, "icons": { "128": "icons\/visbug.png" }, "permissions": [ "activeTab", "contextMenus", "storage" ], "background": { "persistent": true, "scripts": [ "visbug.js", "contextmenu\/launcher.js", "contextmenu\/colormode.js", "contextmenu\/colorscheme.js" ] }, "browser_action": { "default_title": "Click or press Alt+Shift+D to launch VisBug", "default_icon": { "128": "icons\/visbug.png" } }, "web_accessible_resources": [ "tuts\/*", "toolbar\/*" ], "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Alt+Shift+D", "mac": "Alt+Shift+D", "chromeos": "Alt+Shift+D", "linux": "Alt+Shift+D" } } } } |