CSS Selector Finder for Chrome Devtools

Generate CSS Selectors from the Chrome Devtools Elements Panel

Apa itu CSS Selector Finder for Chrome Devtools?

CSS Selector Finder for Chrome Devtools adalah ekstensi Chrome yang dikembangkan oleh https://abbadata.com, dan fitur utamanya adalah "Generate CSS Selectors from the Chrome Devtools Elements Panel".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi CSS Selector Finder for Chrome Devtools

Unduh file ekstensi CSS Selector Finder for Chrome Devtools dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama CSS Selector Finder for Chrome Devtools CSS Selector Finder for Chrome Devtools
ID mbeedbpphndkijipfcklhlgmoolapiml
URL Resmi https://chromewebstore.google.com/detail/css-selector-finder-for-c/mbeedbpphndkijipfcklhlgmoolapiml
Deskripsi Generate CSS Selectors from the Chrome Devtools Elements Panel
Ukuran File 35.66 KB
Jumlah Instalasi 2,746
Versi Saat Ini 0.1
Terakhir Diperbarui 2020-06-23
Tanggal Publikasi 2020-06-23
Penilaian 3.67/5 Total 3 Penilaian
Pengembang https://abbadata.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://abbadata.com/devtools_selector_finder.html
URL Halaman Bantuan https://github.com/abbadata/devtools-css-selector
Bahasa yang Didukung 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
        }
    ]
}