colourSpy

Easily view CSS colours used on a website.

colourSpy란 무엇입니까?

colourSpy은(는) brandonbarker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily view CSS colours used on a website."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        colourSpy is a handy extension to quickly find and preview colours used on a website.

It displays them all in a list of swatches where you can easily copy the corresponding RGB, HEX or HSL values for use in your IDE of choice, or simply export the list of colours to your format of choice.

Supported export formats at the moment are:

CSS
SCSS
LESS
Plain Text
JSON

Changelog:

0.1.4:
 * Added remove swatch button
 * Bug fixes and optimization 

0.1.3:
 * Added export functionality (export to CSS / SCSS / LESS / JSON or Plain Text)

0.1.2:
 * Bug fixes and UI tweaks

0.1.0
 * Initial release

https://github.com/brandon-barker/colourSpy                    

확장 프로그램 기본 정보

이름 colourSpy colourSpy
ID gibojaiafjjbdkfciggcoikfeolodlhm
공식 URL https://chrome.google.com/webstore/detail/colourspy/gibojaiafjjbdkfciggcoikfeolodlhm
설명 Easily view CSS colours used on a website.
파일 크기 787 KB
설치 횟수 193
현재 버전 0.1.4
최근 업데이트 2014-08-18
출시 날짜 2014-08-18
평점 3.75/5 총 4 개의 평점
개발자 brandonbarker
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/brandon-barker/colourSpy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "colourSpy",
    "version": "0.1.4",
    "manifest_version": 2,
    "description": "Easily view CSS colours used on a website.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "js\/color\/color-0.7.1.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "colourSpy",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "web_accessible_resources": [
        "js\/jquery\/jquery.js",
        "js\/jquery\/jquery.min.js",
        "js\/jquery\/jquery.min.map.js",
        "css\/font-awesome.min.css",
        "js\/underscore\/underscore-min.js"
    ],
    "permissions": [
        "clipboardWrite",
        "contextMenus",
        "tabs",
        "*:\/\/*\/*"
    ]
}