CSS Selector Finder for Chrome Devtools

Generate CSS Selectors from the Chrome Devtools Elements Panel

Vad är CSS Selector Finder for Chrome Devtools?

CSS Selector Finder for Chrome Devtools är en Chrome-tillägg utvecklad av https://abbadata.com, och dess huvudfunktion är "Generate CSS Selectors from the Chrome Devtools Elements Panel".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner CSS Selector Finder for Chrome Devtools-förlängningens CRX-fil

Ladda ner CSS Selector Finder for Chrome Devtools-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn CSS Selector Finder for Chrome Devtools CSS Selector Finder for Chrome Devtools
ID mbeedbpphndkijipfcklhlgmoolapiml
Officiell webbadress https://chromewebstore.google.com/detail/css-selector-finder-for-c/mbeedbpphndkijipfcklhlgmoolapiml
Beskrivning Generate CSS Selectors from the Chrome Devtools Elements Panel
Filstorlek 35.66 KB
Antal Installationer 2,746
Aktuell Version 0.1
Senast Uppdaterad 2020-06-23
Publiceringsdatum 2020-06-23
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare https://abbadata.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://abbadata.com/devtools_selector_finder.html
Hjälpsida URL https://github.com/abbadata/devtools-css-selector
Stödda Språk 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
        }
    ]
}