CSS Selector Finder for Chrome Devtools

Generate CSS Selectors from the Chrome Devtools Elements Panel

Что такое CSS Selector Finder for Chrome Devtools?

CSS Selector Finder for Chrome Devtools - это расширение Chrome, разработанное https://abbadata.com, и его основная функция - "Generate CSS Selectors from the Chrome Devtools Elements Panel".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения CSS Selector Finder for Chrome Devtools

Скачайте файлы расширений CSS Selector Finder for Chrome Devtools в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название CSS Selector Finder for Chrome Devtools CSS Selector Finder for Chrome Devtools
ID mbeedbpphndkijipfcklhlgmoolapiml
Официальный URL https://chromewebstore.google.com/detail/css-selector-finder-for-c/mbeedbpphndkijipfcklhlgmoolapiml
Описание Generate CSS Selectors from the Chrome Devtools Elements Panel
Размер файла 35.66 KB
Количество установок 2,746
Текущая Версия 0.1
Последнее Обновление 2020-06-23
Дата публикации 2020-06-23
Рейтинг 3.67/5 Всего 3 оценок
Разработчик https://abbadata.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://abbadata.com/devtools_selector_finder.html
URL страницы помощи https://github.com/abbadata/devtools-css-selector
Поддерживаемые языки 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
        }
    ]
}