Github Vanced

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

Vad är Github Vanced?

Github Vanced är en Chrome-tillägg utvecklad av bhumijgupta, och dess huvudfunktion är "An ultimate chrome extension to customize and streamline your GitHub experience!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Github Vanced-förlängningens CRX-fil

Ladda ner Github Vanced-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

                        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äggande Information om Tillägg

Namn Github Vanced Github Vanced
ID apidmenkobkfjiffjmapgjdapmpaneck
Officiell webbadress https://chrome.google.com/webstore/detail/github-vanced/apidmenkobkfjiffjmapgjdapmpaneck
Beskrivning An ultimate chrome extension to customize and streamline your GitHub experience!
Filstorlek 57.45 KB
Antal Installationer 45
Aktuell Version 0.8.4
Senast Uppdaterad 2019-07-12
Publiceringsdatum 2019-07-12
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare bhumijgupta
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/bhumijgupta/Github-vanced
Hjälpsida URL https://github.com/bhumijgupta/Github-vanced/issues
Stödda Språk 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"
    ]
}