Inspect Devices

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

Co to jest Inspect Devices?

Inspect Devices to rozszerzenie Chrome opracowane przez Aniket, a jego główną funkcją jest „A shortcut to open Remote Devices Chrome inspect for connected android devices”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Inspect Devices

Pobierz pliki rozszerzeń Inspect Devices w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Inspect Devices Inspect Devices
ID kmhbjbgkpaceeioiadjkfinjbckgckim
Oficjalny URL https://chromewebstore.google.com/detail/inspect-devices/kmhbjbgkpaceeioiadjkfinjbckgckim
Opis A shortcut to open Remote Devices Chrome inspect for connected android devices
Rozmiar pliku 15.38 KB
Liczba instalacji 7,143
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2021-07-20
Data Publikacji 2021-07-20
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Aniket
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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:\/\/*\/*"
    ]
}