CSS Picker (beta)

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

CSS Picker (beta) là gì?

CSS Picker (beta) là một tiện ích mở rộng Chrome được phát triển bởi konstantin.oficerov, và tính năng chính của nó là "Powerful tool for developers which allows to pick whole pack of CSS rules from selected DOM element.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng CSS Picker (beta)

Tải xuống các tệp mở rộng CSS Picker (beta) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CSS Picker (beta) CSS Picker (beta)
ID ndbhnmhkplkehbnjckcdlmcicflinjnl
URL Chính Thức https://chrome.google.com/webstore/detail/css-picker-beta/ndbhnmhkplkehbnjckcdlmcicflinjnl
Mô tả Powerful tool for developers which allows to pick whole pack of CSS rules from selected DOM element.
Kích Thước Tệp 391 KB
Số Lần Cài Đặt 925
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2015-06-26
Ngày Phát Hành 2015-06-26
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển konstantin.oficerov
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}