Debug CSS

Adds outline to all elements on the page to show the culprit element which is changing desired layout

Debug CSSคืออะไร?

Debug CSS เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pranay Joshi และคุณลักษณะหลักของมันคือ "Adds outline to all elements on the page to show the culprit element which is changing desired layout"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Debug CSS

ดาวน์โหลดไฟล์ส่วนขยาย Debug CSS ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        # Debug CSS

A lightweight extension for Google chrome to show outline of all the element exist on page.

while working on web page development the one of the difficult part is to position the element as required and check which element affecting the other one.

This chrome extension allows user to see outline on every element of the page. Hold the keyboard Ctrl button and hover element it will show the element details along with the value.

----------

# Usage

Post installation simply click on the extension icon to turn it On or Off.

If you are a keyboard shortcut lover like me simply hit `Alt+Shift+C ` key to toggle the extension.


----------

# How it works?

This extension works on CSS outline attribute:

add the below code snippet in any CSS of a web page 


`
  * {
	outline: 1px solid red;
  }`

The extension does the same the only thing is; it gives different color to different element(s) while the code snippet adds red outline to every element.  

----------

# Other work and repository

[A lightweight customizable plugin for jQuery to show horizontal length in form of vertical progress bar.](https://github.com/pranayjoshicse/VerLim.js)


[listed on jqueryscript.net](https://www.jqueryscript.net/other/Simple-Custom-Reading-Indicator-with-jQuery-VerLim-js.html)

[Demo](https://www.jqueryscript.net/demo/Simple-Custom-Reading-Indicator-with-jQuery-VerLim-js/)


----------

# More about me

[twitter.](https://twitter.com/pranayjoshicse)
[about me.](https://about.me/pranayjoshi)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Debug CSS Debug CSS
ID igiofjnckcagmjgdoaakafngegecjnkj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/debug-css/igiofjnckcagmjgdoaakafngegecjnkj
คำอธิบาย Adds outline to all elements on the page to show the culprit element which is changing desired layout
ขนาดไฟล์ 19.06 KB
จำนวนการติดตั้ง 20,000
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2018-09-12
วันที่เผยแพร่ 2018-09-12
คะแนน 4.74/5 รวมทั้งหมด 31 คะแนน
ผู้พัฒนา Pranay Joshi
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/pranayjoshicse/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Debug CSS",
    "short_name": "Debug CSS by Pranay Joshi",
    "description": "Adds outline to all elements on the page to show the culprit element which is changing desired layout",
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "debug-CSS.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Toggle Debug CSS",
        "default_icon": {
            "19": "images\/toolbar-chrome.png",
            "38": "images\/[email protected]"
        }
    },
    "commands": {
        "toggle-pin": {
            "suggested_key": {
                "default": "Alt+Shift+C"
            },
            "description": "Toggle Debug CSS"
        }
    },
    "icons": {
        "128": "icon_128.png",
        "16": "icon_16.png",
        "48": "icon_48.png"
    },
    "web_accessible_resources": [
        "debugCSS.min.css",
        "debugCSS.js"
    ]
}