CSS Selector Finder for Chrome Devtools

Generate CSS Selectors from the Chrome Devtools Elements Panel

Wat is CSS Selector Finder for Chrome Devtools?

CSS Selector Finder for Chrome Devtools is een Chrome-extensie ontwikkeld door https://abbadata.com, en de belangrijkste functie is "Generate CSS Selectors from the Chrome Devtools Elements Panel".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie CSS Selector Finder for Chrome Devtools

Download CSS Selector Finder for Chrome Devtools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam CSS Selector Finder for Chrome Devtools CSS Selector Finder for Chrome Devtools
ID mbeedbpphndkijipfcklhlgmoolapiml
Officiële URL https://chromewebstore.google.com/detail/css-selector-finder-for-c/mbeedbpphndkijipfcklhlgmoolapiml
Beschrijving Generate CSS Selectors from the Chrome Devtools Elements Panel
Bestandsgrootte 35.66 KB
Aantal Installaties 2,746
Huidige Versie 0.1
Laatst Bijgewerkt 2020-06-23
Publicatiedatum 2020-06-23
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar https://abbadata.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://abbadata.com/devtools_selector_finder.html
Help Pagina-URL https://github.com/abbadata/devtools-css-selector
Ondersteunde Talen 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
        }
    ]
}