Assigns the body element a class value of the website's domain.

คืออะไร?

เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.gible.net และคุณลักษณะหลักของมันคือ "Assigns the body element a class value of the website's domain."

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

screenshot

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

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

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

                        NOTE THAT AS OF v33 CHROME NO LONGER SUPPORTS THE CUSTOM.CSS DISCUSSED HERE. I'm leaving this extension up anyway since ya'll are still using it. Maybe it's useful for something else as well. (There's still no site selectors in CSS)

Assigns the body element of each page(including any frames) a class value of the website's domain. e.g.  

The purpose of this is to allow website-specific CSS selectors in custom.css (user stylesheet).

CSS selectors use a period to signify classes so you'll need to escape them with a backslash. eg:
.www\.google\.com * {font-family: "Comic Sans MS", cursive, sans-serif !important;}


blah blah pick your disclaimer not really using your data etc

1.5 Updates:
* New manifest version. (no actual changes)
1.4 Updates:
* iframes now get the class of their src domain as well as the document domain
* removed flickr access requirement left over from the example manifest.json                    

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

ชื่อ <body class='domain'>
ID ppplcafndgbjbiefmgpkeepmcjaccebn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/%3Cbody-classdomain%3E/ppplcafndgbjbiefmgpkeepmcjaccebn
คำอธิบาย Assigns the body element a class value of the website's domain.
ขนาดไฟล์ 40.39 KB
จำนวนการติดตั้ง 13
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2015-06-17
วันที่เผยแพร่ 2015-06-16
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://www.gible.net
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "",
    "version": "1.5",
    "description": "Assigns the body element a class value of the website's domain.",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "bodyclassdomain.js"
            ]
        }
    ]
}