Inspect Devices

A shortcut to open Remote Devices Chrome inspect for connected android devices

Что такое Inspect Devices?

Inspect Devices - это расширение Chrome, разработанное Aniket, и его основная функция - "A shortcut to open Remote Devices Chrome inspect for connected android devices".

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

screenshot

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

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

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

                        A time saving shortcut to open DevTool's Remote Devices Tab.

Right click and select 'Device Inspector' from context menu to open Developer Tools > Remote Devices.

or

Use shortcut key combination 'Ctrl + Shift + Up (Arrow Key)' to open Developer Tools > Remote Devices                    

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

Название Inspect Devices Inspect Devices
ID kmhbjbgkpaceeioiadjkfinjbckgckim
Официальный URL https://chromewebstore.google.com/detail/inspect-devices/kmhbjbgkpaceeioiadjkfinjbckgckim
Описание A shortcut to open Remote Devices Chrome inspect for connected android devices
Размер файла 15.38 KB
Количество установок 7,143
Текущая Версия 1.1.0
Последнее Обновление 2021-07-20
Дата публикации 2021-07-20
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Aniket
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inspect Devices",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "A shortcut to open Remote Devices Chrome inspect for connected android devices",
    "homepage_url": "http:\/\/aniket.co",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "open-inspect-devices": {
            "suggested_key": {
                "default": "Ctrl+Shift+Up",
                "windows": "Ctrl+Shift+Up",
                "mac": "Command+Shift+Up",
                "linux": "Ctrl+Shift+Up"
            },
            "description": "Open Inspect Devices"
        }
    },
    "permissions": [
        "commands",
        "contextMenus",
        "https:\/\/*\/*, http:\/\/*\/*"
    ]
}