Github Vanced

An ultimate chrome extension to customize and streamline your GitHub experience!

Hvad er Github Vanced?

Github Vanced er en Chrome-udvidelse udviklet af bhumijgupta, og dens hovedfunktion er "An ultimate chrome extension to customize and streamline your GitHub experience!".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Github Vanced-udvidelses-CRX-fil

Download Github Vanced-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        An ultimate chrome extension to customize and streamline your GitHub experience with a lifetime promise of no ads and no data collection
Features -
1. Website wide dark mode
2. Colors contribution chart to avoid distraction
3. Easy toggle switches to enable and disable features                    

Grundlæggende oplysninger om udvidelsen

Navn Github Vanced Github Vanced
ID apidmenkobkfjiffjmapgjdapmpaneck
Officiel URL https://chrome.google.com/webstore/detail/github-vanced/apidmenkobkfjiffjmapgjdapmpaneck
Beskrivelse An ultimate chrome extension to customize and streamline your GitHub experience!
Filstørrelse 57.45 KB
Antal Installationer 45
Nuværende Version 0.8.4
Senest Opdateret 2019-07-12
Udgivelsesdato 2019-07-12
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler bhumijgupta
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/bhumijgupta/Github-vanced
Hjælpeside-URL https://github.com/bhumijgupta/Github-vanced/issues
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Vanced",
    "description": "An ultimate chrome extension to customize and streamline your GitHub experience!",
    "version": "0.8.4",
    "author": "Bhumij Gupta",
    "icons": {
        "16": "assets\/icon_16.png",
        "32": "assets\/icon_32.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "colorify.js",
                "darktheme.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "popup.html",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}