CSS Picker (beta)

Powerful tool for developers which allows to pick whole pack of CSS rules from selected DOM element.

CSS Picker (beta)とは何ですか?

CSS Picker (beta)はkonstantin.oficerovによって開発されたChromeの拡張機能で、その主な機能は「Powerful tool for developers which allows to pick whole pack of CSS rules from selected DOM element.」です。

拡張機能のスクリーンショット

screenshot

CSS Picker (beta)拡張機能のCRXファイルをダウンロード

CSS Picker (beta)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Simple for usage extension will allow you to copy styles and behavior of selected element in ease.
It is able to collect whole bunch of CSS rules related to selected DOM element and has simpliest interface and pleasant design.
Chrome debugger is not always able to collect all rules in one place, but CSS Picker is!
Rules are separated with tabs, thus you can easily choose what exactly you need to copy whether it is :pseudo_class, whether ::pseudo_element or simply pack of rules related to single element.                    

拡張機能の基本情報

名前 CSS Picker (beta) CSS Picker (beta)
ID ndbhnmhkplkehbnjckcdlmcicflinjnl
公式URL https://chrome.google.com/webstore/detail/css-picker-beta/ndbhnmhkplkehbnjckcdlmcicflinjnl
説明 Powerful tool for developers which allows to pick whole pack of CSS rules from selected DOM element.
ファイルサイズ 391 KB
インストール数 925
現在のバージョン 1.0.1
最終更新日 2015-06-26
公開日 2015-06-26
評価 3.67/5 合計 3 レビュー
開発者 konstantin.oficerov
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSS Picker (beta)",
    "version": "1.0.1",
    "description": "Powerful tool for developers which allows to pick whole pack of CSS rules from selected DOM element.",
    "icons": {
        "256": "dest\/icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "dest\/lib.min.js",
                "dest\/content.js"
            ],
            "css": [
                "dest\/content.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "options_page": "templates\/options.html",
    "browser_action": {
        "default_icon": {
            "256": "dest\/icon.png"
        },
        "default_title": "CSS Picker",
        "default_popup": "templates\/popup.html"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "dest\/lib.min.js",
            "dest\/app.js"
        ]
    },
    "author": "Konstantin Oficerov",
    "permissions": [
        "tabs",
        "browsingData",
        "contextMenus",
        "storage",
        "declarativeContent",
        "fontSettings",
        "clipboardRead",
        "clipboardWrite"
    ],
    "storage": {
        "managed_schema": "schema.json"
    }
}