Red Border Chrome Extension
Debug HTML/CSS by adding red outline to all elements
什麼是Red Border Chrome Extension?
Red Border Chrome Extension是由adnjoo開發的Chrome擴展程式,該擴展的主要功能是“Debug HTML/CSS by adding red outline to all elements”。
擴展截圖
下載Red Border Chrome Extension擴展crx文件
下載Red Border Chrome Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Debug HTML/CSS by drawing a red border around web page elements.
v0.0.3
- updated to manifest 3
- show on/off in icon
v0.0.0.2
-fixed some bugs on the button 擴展基本資訊
| 名稱 | |
| ID | cgbdhepdbbcdfdlopicohifabajofjbg |
| 官方網址 | https://chromewebstore.google.com/detail/red-border-chrome-extensi/cgbdhepdbbcdfdlopicohifabajofjbg |
| 簡介 | Debug HTML/CSS by adding red outline to all elements |
| 檔案大小 | 6.3 KB |
| 安裝次數 | 843 |
| 目前版本 | 0.0.3 |
| 更新時間 | 2023-12-05 |
| 上架時間 | 2021-06-10 |
| 評分 | 5.00/5 共 4 次評分 |
| 開發者 | adnjoo |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/andrewnjoo/RedBorderChromeExtension |
| 說明頁面URL | https://github.com/andrewnjoo/RedBorderChromeExtension/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Red Border Chrome Extension",
"description": "Debug HTML\/CSS by adding red outline to all elements",
"version": "0.0.3",
"icons": {
"16": ".\/images\/icon.png"
},
"permissions": [
"activeTab",
"scripting"
],
"action": {
"default_icon": {
"16": ".\/images\/icon.png"
}
},
"background": {
"service_worker": "bg.js"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "Command+B"
}
}
}
} | |