Feature Queries Manager

Manage and toggle CSS on a page behind a @supports Feature Query.

Co to jest Feature Queries Manager?

Feature Queries Manager to rozszerzenie Chrome opracowane przez iaderinokun, a jego główną funkcją jest „Manage and toggle CSS on a page behind a @supports Feature Query.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Feature Queries Manager

Pobierz pliki rozszerzeń Feature Queries Manager 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

                        FQM allows you to toggle CSS styles applied under a @supports Feature Query                    

Podstawowe informacje o rozszerzeniu

Nazwa Feature Queries Manager Feature Queries Manager
ID fbhgnconlfgmienbmpbeeenffagggonp
Oficjalny URL https://chromewebstore.google.com/detail/feature-queries-manager/fbhgnconlfgmienbmpbeeenffagggonp
Opis Manage and toggle CSS on a page behind a @supports Feature Query.
Rozmiar pliku 45.38 KB
Liczba instalacji 445
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2018-04-26
Data Publikacji 2018-04-26
Ocena 4.20/5 Łącznie 5 Oceny
Deweloper iaderinokun
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/ireade/feature-queries-manager
Adres URL Strony Pomocy https://github.com/ireade/feature-queries-manager
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Feature Queries Manager",
    "short_name": "FQM",
    "description": "Manage and toggle CSS on a page behind a @supports Feature Query.",
    "version": "0.3",
    "permissions": [
        "tabs",
        "activeTab",
        ""
    ],
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "devtools_page": "devtools\/index.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "browser-polyfill.js",
                "content\/content.js"
            ]
        }
    ],
    "icons": {
        "128": "images\/[email protected]",
        "64": "images\/[email protected]",
        "16": "images\/[email protected]",
        "48": "images\/[email protected]"
    }
}