GitHub Colorful Contributions

💚💙💜💛❤️ Customize the colors of the GitHub contributions graph.

Vad är GitHub Colorful Contributions?

GitHub Colorful Contributions är en Chrome-tillägg utvecklad av g1eny0ung, och dess huvudfunktion är "💚💙💜💛❤️ Customize the colors of the GitHub contributions graph.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner GitHub Colorful Contributions-förlängningens CRX-fil

Ladda ner GitHub Colorful Contributions-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        GitHub Colorful Contributions (GCC) can change the color of the contributions graph on your GitHub profile page.

GCC can also be used with https://github.com/jasonlong/isometric-contributions.

Once installed, you can click on the extension icon to select the color you like.

Extension homepage: https://github.com/g1eny0ung/github-colorful-contributions-graph

If you have any questions, feel free to submit an issue at https://github.com/g1eny0ung/github-colorful-contributions-graph/issues or mail me ([email protected]).                    

Grundläggande Information om Tillägg

Namn GitHub Colorful Contributions GitHub Colorful Contributions
ID nmlemiahmhcclpifhmpbjbikdgbndief
Officiell webbadress https://chromewebstore.google.com/detail/github-colorful-contribut/nmlemiahmhcclpifhmpbjbikdgbndief
Beskrivning 💚💙💜💛❤️ Customize the colors of the GitHub contributions graph.
Filstorlek 121 KB
Antal Installationer 163
Aktuell Version 4.0.3
Senast Uppdaterad 2023-04-04
Publiceringsdatum 2020-07-04
Betyg 4.60/5 Totalt 5 Betyg
Utvecklare g1eny0ung
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/g1eny0ung/github-colorful-contributions-graph
Hjälpsida URL https://github.com/g1eny0ung/github-colorful-contributions-graph/issues
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Colorful Contributions",
    "description": "\ud83d\udc9a\ud83d\udc99\ud83d\udc9c\ud83d\udc9b\u2764\ufe0f Customize the colors of the GitHub contributions graph.",
    "version": "4.0.3",
    "manifest_version": 3,
    "permissions": [
        "declarativeContent",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/github.com\/*"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "images\/16x16.png",
            "32": "images\/32x32.png",
            "48": "images\/48x48.png",
            "128": "images\/128x128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "js\/obelisk.min.js",
                "js\/content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/16x16.png",
        "32": "images\/32x32.png",
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    }
}