Friendly GitHub
Makes GitHub a better Social Network
Qu'est-ce que Friendly GitHub ?
Friendly GitHub est une extension Chrome développée par hermanstarikov, et sa fonction principale est "Makes GitHub a better Social Network".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Friendly GitHub
Téléchargez les fichiers d'extension Friendly GitHub 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
Whether we like it or not, GitHub is de-facto the Social Network for programmers. Let's make it less anti-social.
Informations de Base sur l'Extension
Nom | Friendly GitHub |
ID | phnhnfjginnlmbjlcdnjoochcceapfjb |
URL Officiel | https://chromewebstore.google.com/detail/friendly-github/phnhnfjginnlmbjlcdnjoochcceapfjb |
Description | Makes GitHub a better Social Network |
Taille du Fichier | 44.63 KB |
Nombre d'Installations | 111 |
Version Actuelle | 18.9.13.2209 |
Dernière Mise à Jour | 2018-09-13 |
Date de Publication | 2018-09-13 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | hermanstarikov |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Hermanya/friendly-github |
URL de la Page d'Aide | https://github.com/Hermanya/friendly-github/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Friendly GitHub", "short_name": "FGH", "version": "18.9.13.2209", "description": "Makes GitHub a better Social Network", "homepage_url": "https:\/\/github.com\/hermanya\/friendly-github", "manifest_version": 2, "minimum_chrome_version": "58", "applications": { "gecko": { "id": "{073711a2-ea6d-49f2-98b6-0d7ea340c06f}", "strict_min_version": "55.0" } }, "permissions": [ "storage", "contextMenus", "activeTab", "https:\/\/api.github.com\/*" ], "browser_action": { "default_icon": "icon.png", "default_popup": "options.html", "browser_style": true }, "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "128": "icon.png" }, "options_ui": { "chrome_style": true, "page": "options.html" }, "background": { "scripts": [ "browser-polyfill.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "css": [ "content.css" ], "js": [ "browser-polyfill.min.js", "content.js" ] } ] } |