chrome-usercss-hogashi

usercss for each site

What is chrome-usercss-hogashi?

chrome-usercss-hogashi is a Chrome extension developed by hogashi, and its main feature is "usercss for each site".

Extension Screenshots

screenshot

Download chrome-usercss-hogashi Extension CRX File

Download chrome-usercss-hogashi extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name chrome-usercss-hogashi chrome-usercss-hogashi
ID bddeakjniijkggfocbdngafgdjkljkje
Official URL https://chromewebstore.google.com/detail/chrome-usercss-hogashi/bddeakjniijkggfocbdngafgdjkljkje
Description usercss for each site
File Size 1.67 MB
Installation Count 19
Current Version 0.4.1
Last Updated 2022-01-16
Publish Date 2020-12-26
Developer hogashi
Email [email protected]
Payment Type free
Extension Website https://hogashi.hatenablog.com
Privacy Policy Page URL https://github.com/hogashi/twitterOpenOriginalImage/blob/master/privacy-policy.md
Supported Languages 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"
}