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

란 무엇입니까?

은(는) https://www.gible.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Assigns the body element a class value of the website's domain."입니다.

확장 프로그램 스크린샷

screenshot

확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}