chrome-usercss-hogashi

usercss for each site

Co to jest chrome-usercss-hogashi?

chrome-usercss-hogashi to rozszerzenie Chrome opracowane przez hogashi, a jego główną funkcją jest „usercss for each site”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia chrome-usercss-hogashi

Pobierz pliki rozszerzeń chrome-usercss-hogashi 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

                        UserCSS をサイトごとに挿入する拡張機能です。サイトは hostname ごとに区別され、それぞれのサイトにそれぞれの UserCSS を設定できます。
利用に責任を負いません。他人から渡された信用できないコードは入力しないでください。                    

Podstawowe informacje o rozszerzeniu

Nazwa chrome-usercss-hogashi chrome-usercss-hogashi
ID bddeakjniijkggfocbdngafgdjkljkje
Oficjalny URL https://chromewebstore.google.com/detail/chrome-usercss-hogashi/bddeakjniijkggfocbdngafgdjkljkje
Opis usercss for each site
Rozmiar pliku 1.67 MB
Liczba instalacji 19
Aktualna Wersja 0.4.1
Ostatnia Aktualizacja 2022-01-16
Data Publikacji 2020-12-26
Deweloper hogashi
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://hogashi.hatenablog.com
Adres URL Strony Polityki Prywatności https://github.com/hogashi/twitterOpenOriginalImage/blob/master/privacy-policy.md
Obsługiwane Języki ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "chrome-usercss-hogashi",
    "version": "0.4.1",
    "description": "usercss for each site",
    "author": "hogashi",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "chrome-usercss-hogashi",
        "default_popup": "popup.html"
    },
    "options_page": "popup.html"
}