chrome-usercss-hogashi

usercss for each site

Cos'è chrome-usercss-hogashi?

chrome-usercss-hogashi è un'estensione di Chrome sviluppata da hogashi, e la sua funzione principale è "usercss for each site".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione chrome-usercss-hogashi

Scarica i file di estensione chrome-usercss-hogashi in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome chrome-usercss-hogashi chrome-usercss-hogashi
ID bddeakjniijkggfocbdngafgdjkljkje
URL Ufficiale https://chromewebstore.google.com/detail/chrome-usercss-hogashi/bddeakjniijkggfocbdngafgdjkljkje
Descrizione usercss for each site
Dimensione del File 1.67 MB
Conteggio Installazioni 19
Versione Corrente 0.4.1
Ultimo Aggiornamento 2022-01-16
Data di Pubblicazione 2020-12-26
Sviluppatore hogashi
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://hogashi.hatenablog.com
URL della Pagina della Politica sulla Privacy https://github.com/hogashi/twitterOpenOriginalImage/blob/master/privacy-policy.md
Lingue Supportate 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"
}