Squaredance Pixel Helper

Squaredance Pixel Helper - A Chrome Extension

Co to jest Squaredance Pixel Helper?

Squaredance Pixel Helper to rozszerzenie Chrome opracowane przez Squaredance, a jego główną funkcją jest „Squaredance Pixel Helper - A Chrome Extension”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Squaredance Pixel Helper

Pobierz pliki rozszerzeń Squaredance Pixel Helper 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

                        Inspect and debug the events generated by the Squaredance Pixel                    

Podstawowe informacje o rozszerzeniu

Nazwa Squaredance Pixel Helper Squaredance Pixel Helper
ID lkinepihoopcnfblhbbmnjeohihijcla
Oficjalny URL https://chromewebstore.google.com/detail/squaredance-pixel-helper/lkinepihoopcnfblhbbmnjeohihijcla
Opis Squaredance Pixel Helper - A Chrome Extension
Rozmiar pliku 1.29 MB
Liczba instalacji 431
Aktualna Wersja 4.1.0
Ostatnia Aktualizacja 2024-03-01
Data Publikacji 2019-11-21
Deweloper Squaredance
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://squaredance.io/
Adres URL Strony Pomocy https://helper.squaredance.io/
Adres URL Strony Polityki Prywatności https://www.squaredance.io/privacy-policy
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Squaredance Pixel Helper",
    "version": "4.1.0",
    "description": "Squaredance Pixel Helper - A Chrome Extension",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "tabs",
        "background",
        "webRequest",
        "webRequestBlocking",
        "webNavigation",
        "*:\/\/localhost\/*",
        ""
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+J",
                "mac": "Command+J"
            }
        }
    },
    "browser_action": {
        "default_title": "Squaredance Pixel Helper",
        "default_popup": "pages\/popup.html"
    },
    "background": {
        "persistent": true,
        "page": "pages\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "all_frames": true,
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}