JS Selector

Create JavaScript and jQuery selectors with one click.

Что такое JS Selector?

JS Selector - это расширение Chrome, разработанное https://secret-share.com, и его основная функция - "Create JavaScript and jQuery selectors with one click.".

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

screenshot

Скачать файл CRX расширения JS Selector

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

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

                        You want easy copy and paste access to DOM elements with just one click? Well, you can stop searching, we got what you need! XPath Selector inserts a context menu to Google Chrome for easy access to this functionality. Just right click your element, choose your desired output format and get the selector right into your clipboard.

It's all that easy.                    

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

Название JS Selector JS Selector
ID mlcdhnofeolpdckggnbohdgpncchcmkk
Официальный URL https://chromewebstore.google.com/detail/js-selector/mlcdhnofeolpdckggnbohdgpncchcmkk
Описание Create JavaScript and jQuery selectors with one click.
Размер файла 1.71 MB
Количество установок 424
Текущая Версия 1.1.1
Последнее Обновление 2021-11-10
Дата публикации 2020-09-06
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://secret-share.com
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://www.secret-share.com/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JS Selector",
    "description": "Create JavaScript and jQuery selectors with one click.",
    "version": "1.1.1",
    "manifest_version": 2,
    "homepage_url": "https:\/\/checkmytag.de",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "page action demo",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "storage",
        "clipboardWrite",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/inject\/listener.js"
            ],
            "run_at": "document_start"
        }
    ]
}