Pint for GitHub

Pint for GitHub is a theming engine that allows you to customize and theme your developer experience on GitHub.

Pint for GitHub क्या है?

Pint for GitHub https://fuwa.sh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Pint for GitHub is a theming engine that allows you to customize and theme your developer experience on GitHub."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Pint for GitHub एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        GitHub's personalisation options are a bit lacking, and staring at the same bland dark color scheme can make you wonder, what if there's more.

Pint for GitHub resolves that by providing you control over the way GitHub looks like. Did I mention it's free and OSS?

Features:
- Complete control of personalisation of every element.
- With the right settings, you can also achieve light theme too.
- Quickly paint groups of colors with the Group Painter.
- Quickly paint the entire site with the Update All button.
- Individual control of every possible element (change the color of any individual element without affecting the rest)
- Suggest colors that match the color you picked.
- Custom CSS to modify each button to each div just the way you like it.
- Free and Open-source and will always be.

This project is not affiliated, associated, endorsed by, or in any way officially connected with GitHub, Inc. and Git, or any of its subsidiaries or its affiliates.                    

एक्सटेंशन की मूल जानकारी

नाम Pint for GitHub Pint for GitHub
ID mjhmdkcefcklflcmmokoahfdodcpeobg
आधिकारिक URL https://chromewebstore.google.com/detail/pint-for-github/mjhmdkcefcklflcmmokoahfdodcpeobg
विवरण Pint for GitHub is a theming engine that allows you to customize and theme your developer experience on GitHub.
फ़ाइल का आकार 2.89 MB
स्थापना संख्या 31
वर्तमान संस्करण 2.0.1
अंतिम अपडेट 2022-08-09
प्रकाशन तिथि 2022-01-12
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://fuwa.sh
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/fuwaa/pint
सहायता पृष्ठ URL https://github.com/fuwaa/pint/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Pint for GitHub",
    "version": "2.0.1",
    "icons": {
        "16": "pint-logo.png",
        "48": "pint-logo.png",
        "128": "pint-logo.png"
    },
    "action": {
        "default_icon": {
            "16": "pint-logo.png",
            "24": "pint-logo.png",
            "32": "pint-logo.png"
        },
        "default_title": "Pint for GitHub",
        "default_popup": "index.html"
    },
    "description": "Pint for GitHub is a theming engine that allows you to customize and theme your developer experience on GitHub.",
    "author": {
        "name": "Jariel Que",
        "url": "https:\/\/github.com\/fuwaa"
    },
    "host_permissions": [
        "https:\/\/*.github.com\/"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "css": [
                "pint-css.css"
            ],
            "js": [
                "initial.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "js": [
                "initial.js"
            ],
            "css": [
                "unhide.css"
            ]
        },
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "js": [
                "initial.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "index.html"
}