CSS TRIMMER

Creates a single line Style tag from Chrome's dev tools Styles menu

CSS TRIMMER란 무엇입니까?

CSS TRIMMER은(는) Alon Adler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Creates a single line Style tag from Chrome's dev tools Styles menu"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Quickly turns Dev Tools CSS Styles code to an inline style tag.

For example, turn:

display: block;
height: 14em;
resize: vertical;

To:

style='display: block; height: 14em; resize: vertical;'

In a single click.

How to use:
1- Copy any CSS code block from Chrome's Dev Tools Styles menu to the clipboard (CTRL+C).
2- Press the CSS icon in the extensions menu.
3- That's it, you're done, the inline style tag is auto copied to your clipboard (and also visible in the popup page).

4- You can modify the CSS code and press the 'ReTrim' button to create the style tag again, with your changes.                    

확장 프로그램 기본 정보

이름 CSS TRIMMER CSS TRIMMER
ID hdhbfineemcdppmmlahpohaiinapaejc
공식 URL https://chromewebstore.google.com/detail/css-trimmer/hdhbfineemcdppmmlahpohaiinapaejc
설명 Creates a single line Style tag from Chrome's dev tools Styles menu
파일 크기 18 KB
설치 횟수 54
현재 버전 1.0
최근 업데이트 2017-04-20
출시 날짜 2017-04-20
평점 5.00/5 총 6 개의 평점
개발자 Alon Adler
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSS TRIMMER",
    "short_name": "CSS TRIMMER",
    "author": "Alon Adler",
    "description": "Creates a single line Style tag from Chrome's dev tools Styles menu",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite"
    ]
}