CSS Selector Finder for Chrome Devtools

Generate CSS Selectors from the Chrome Devtools Elements Panel

Cos'è CSS Selector Finder for Chrome Devtools?

CSS Selector Finder for Chrome Devtools è un'estensione di Chrome sviluppata da https://abbadata.com, e la sua funzione principale è "Generate CSS Selectors from the Chrome Devtools Elements Panel".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione CSS Selector Finder for Chrome Devtools

Scarica i file di estensione CSS Selector Finder for Chrome Devtools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome CSS Selector Finder for Chrome Devtools CSS Selector Finder for Chrome Devtools
ID mbeedbpphndkijipfcklhlgmoolapiml
URL Ufficiale https://chromewebstore.google.com/detail/css-selector-finder-for-c/mbeedbpphndkijipfcklhlgmoolapiml
Descrizione Generate CSS Selectors from the Chrome Devtools Elements Panel
Dimensione del File 35.66 KB
Conteggio Installazioni 2,746
Versione Corrente 0.1
Ultimo Aggiornamento 2020-06-23
Data di Pubblicazione 2020-06-23
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore https://abbadata.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://abbadata.com/devtools_selector_finder.html
URL della Pagina di Aiuto https://github.com/abbadata/devtools-css-selector
Lingue Supportate 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
        }
    ]
}