CSS Spy

Showing CSS attribute on element hover

CSS Spyคืออะไร?

CSS Spy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย SoftwareSeni และคุณลักษณะหลักของมันคือ "Showing CSS attribute on element hover"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Inspect computed styles of any single element just on the fly. When the extension is active, hovering element will shows the width, height and selector name of the element. Clicking on the element will bring popup which show the common computed styles of the element, so you could just copy it right away. Comparing CSS properties of 2 elements will also never been this easier with this extension. 

Features:
1. Showing width and height when hovering on an element
2. Showing computed style when clicking on an element
3. Comparing CSS properties of 2 element (even work with elements from different page/URL)
4. Clean design (yeah, that's exactly what we need)

Change log:
v.1.0:
Fixing minor bugs

v1.1:
Change RGB to hex

v1.2:
Add ability to reset storage when new window created

v1.3:
- Add feature to compare 2 different CSS
- Add settings to choose properties to show

v1.4:
- Add CSS Reset for the popup

v1.5:
- Relocated files and folder
- Add exception for storage limit                    

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

ชื่อ CSS Spy CSS Spy
ID plbeolffejbcpmndnfknfkcaofdmdeln
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/css-spy/plbeolffejbcpmndnfknfkcaofdmdeln
คำอธิบาย Showing CSS attribute on element hover
ขนาดไฟล์ 62.48 KB
จำนวนการติดตั้ง 3,000
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2016-05-06
วันที่เผยแพร่ 2016-05-06
คะแนน 3.94/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา SoftwareSeni
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSS Spy",
    "short_name": "css-spy",
    "description": "Showing CSS attribute on element hover",
    "version": "1.5",
    "author": "Rudi Wahyudi",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "offline_enabled": false,
    "browser_action": {
        "default_icon": "images\/icon48.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery-2.2.3.min.js",
                "js\/jquery.dom-outline-1.0.js",
                "js\/selectorator.min.js",
                "js\/css-spy.js",
                "js\/sweetalert.min.js"
            ],
            "css": [
                "css\/css-spy.css",
                "css\/sweetalert.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}