color-pusher

Easy color theme tweaking for any website as Chrome DevTools panel

color-pusher란 무엇입니까?

color-pusher은(는) https://glebbahmutov.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easy color theme tweaking for any website as Chrome DevTools panel"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Tweak any or all colors in any page using this DevTools panel. 
Easily replace entire color palette, adjust hue, saturation and value.
Generate multiple colors based on first color as triad, tetrad, analogous, etc.

Work in progress. Please take a look at the source code / file issues at https://github.com/bahmutov/color-pusher-chrome. Follow on Twitter at https://twitter.com/bahmutov

A related widget that can be embedded into your (single line) page and allows to fetch entire palette from external websites: https://github.com/bahmutov/color-pusher                    

확장 프로그램 기본 정보

이름 color-pusher color-pusher
ID gcahnlgconcbplfboahcgaobkpdhidee
공식 URL https://chromewebstore.google.com/detail/color-pusher/gcahnlgconcbplfboahcgaobkpdhidee
설명 Easy color theme tweaking for any website as Chrome DevTools panel
파일 크기 773 KB
설치 횟수 117
현재 버전 0.0.2
최근 업데이트 2013-12-10
출시 날짜 2013-12-09
평점 3.00/5 총 2 개의 평점
개발자 https://glebbahmutov.com
결제 유형 free
확장 프로그램 웹 사이트 http://glebbahmutov.com/color-pusher/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "color-pusher",
    "version": "0.0.2",
    "author": "Gleb Bahmutov",
    "description": "Easy color theme tweaking for any website as Chrome DevTools panel",
    "permissions": [],
    "optional_permissions": [],
    "icons": {
        "128": "icons\/app-icon-128.png",
        "64": "icons\/app-icon-64.png",
        "48": "icons\/app-icon-48.png",
        "32": "icons\/app-icon-32.png",
        "16": "icons\/app-icon-16.png"
    },
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "panel\/libs\/jquery.js",
                "content-script\/color-pusher-injected-into-page.js"
            ]
        }
    ]
}