Make GitHub Great Again
Extension to make GitHub great again!
Qu'est-ce que Make GitHub Great Again ?
Make GitHub Great Again est une extension Chrome développée par https://dennissnijder.github.io/MakeGithubGreatAgain, et sa fonction principale est "Extension to make GitHub great again!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Make GitHub Great Again
Téléchargez les fichiers d'extension Make GitHub Great Again au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Get your old Github back. Remove the new dark topbar. https://github.com/DennisSnijder/MakeGithubGreatAgain
Informations de Base sur l'Extension
Nom | Make GitHub Great Again |
ID | gpejlkhibgecggplgogpbgbdpnhogmhk |
URL Officiel | https://chromewebstore.google.com/detail/make-github-great-again/gpejlkhibgecggplgogpbgbdpnhogmhk |
Description | Extension to make GitHub great again! |
Taille du Fichier | 528 KB |
Nombre d'Installations | 681 |
Version Actuelle | 2.0.1 |
Dernière Mise à Jour | 2017-08-29 |
Date de Publication | 2017-08-29 |
Évaluation | 4.71/5 Total 38 Évaluations |
Développeur | https://dennissnijder.github.io/MakeGithubGreatAgain |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/DennisSnijder/MakeGithubGreatAgain |
URL de la Page d'Aide | https://github.com/DennisSnijder/MakeGithubGreatAgain |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Make GitHub Great Again", "version": "2.0.1", "description": "Extension to make GitHub great again!", "minimum_chrome_version": "26", "icons": { "16": "assets\/icon_16.png", "48": "assets\/icon_48.png", "128": "assets\/icon_128.png" }, "page_action": { "default_title": "Toggle light\/dark header" }, "permissions": [ "storage" ], "background": { "persistent": false, "scripts": [ "src\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*", "*:\/\/*.github.com\/*" ], "js": [ "src\/content_script.js" ], "css": [ "src\/header.css", "src\/links.css", "src\/save-the-colors.css", "src\/fonts.css" ], "run_at": "document_start" } ], "options_ui": { "page": "src\/options.html", "chrome_style": true } } |