CSS Selector Finder for Chrome Devtools

Generate CSS Selectors from the Chrome Devtools Elements Panel

CSS Selector Finder for Chrome Devtools là gì?

CSS Selector Finder for Chrome Devtools là một tiện ích mở rộng Chrome được phát triển bởi https://abbadata.com, và tính năng chính của nó là "Generate CSS Selectors from the Chrome Devtools Elements Panel".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CSS Selector Finder for Chrome Devtools

Tải xuống các tệp mở rộng CSS Selector Finder for Chrome Devtools 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

                        Easy to use Devtools sidebar that aids in finding unique CSS selectors.

- Unique CSS selectors are continuously generated as the selection is changed in the Devtools Elements panel
- Highly configurable. Settings can easily be changed interactively and results can be seen immediately.
  - Enable/Disable usage of IDs, Class names, and Tag names for selector generation
  - Filter out specific values of IDs, Class names, and Tag names
  - Use custom attribute names and attribute name/value pairs
  - Various settings to control robustness and optimization of selectors                    

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

Tên CSS Selector Finder for Chrome Devtools CSS Selector Finder for Chrome Devtools
ID mbeedbpphndkijipfcklhlgmoolapiml
URL Chính Thức https://chromewebstore.google.com/detail/css-selector-finder-for-c/mbeedbpphndkijipfcklhlgmoolapiml
Mô tả Generate CSS Selectors from the Chrome Devtools Elements Panel
Kích Thước Tệp 35.66 KB
Số Lần Cài Đặt 2,746
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2020-06-23
Ngày Phát Hành 2020-06-23
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://abbadata.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://abbadata.com/devtools_selector_finder.html
URL Trang Trợ Giúp https://github.com/abbadata/devtools-css-selector
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "CSS Selector Finder for Chrome Devtools",
    "name": "CSS Selector Finder for Chrome Devtools",
    "version": "0.1",
    "description": "Generate CSS Selectors from the Chrome Devtools Elements Panel",
    "manifest_version": 2,
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "\/static\/js\/background\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "abba16.png",
        "48": "abba48.png",
        "128": "abba128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/static\/js\/content_script.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ]
}