Get Style

see css attributes instantly by mousing over

Get Styleคืออะไร?

Get Style เป็นส่วนขยายของ Chrome ที่พัฒนาโดย danyalette และคุณลักษณะหลักของมันคือ "see css attributes instantly by mousing over"

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

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

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

                        view CSS properties on the fly, by mousing over                    

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

ชื่อ Get Style Get Style
ID coidiadldgffddljfiafnabogkhadecg
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/get-style/coidiadldgffddljfiafnabogkhadecg
คำอธิบาย see css attributes instantly by mousing over
ขนาดไฟล์ 28.73 KB
จำนวนการติดตั้ง 227
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2014-08-29
วันที่เผยแพร่ 2014-08-29
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา danyalette
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://danyalette.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Get Style",
    "description": "see css attributes instantly by mousing over",
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "64": "icon-64.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "mystyles.css"
            ],
            "script": [
                "getStyle.js",
                "getStyleChecker.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "get style",
        "default_icon": "icon-32.png"
    },
    "web_accessible_resources": [
        "icon-64.png"
    ],
    "manifest_version": 2
}