Friendly GitHub
Makes GitHub a better Social Network
Wat is Friendly GitHub?
Friendly GitHub is een Chrome-extensie ontwikkeld door hermanstarikov, en de belangrijkste functie is "Makes GitHub a better Social Network".
Extensie Screenshots
Download het CRX-bestand van de extensie Friendly GitHub
Download Friendly GitHub-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Whether we like it or not, GitHub is de-facto the Social Network for programmers. Let's make it less anti-social.
Basisinformatie over de Extensie
Naam | Friendly GitHub |
ID | phnhnfjginnlmbjlcdnjoochcceapfjb |
Officiële URL | https://chromewebstore.google.com/detail/friendly-github/phnhnfjginnlmbjlcdnjoochcceapfjb |
Beschrijving | Makes GitHub a better Social Network |
Bestandsgrootte | 44.63 KB |
Aantal Installaties | 111 |
Huidige Versie | 18.9.13.2209 |
Laatst Bijgewerkt | 2018-09-13 |
Publicatiedatum | 2018-09-13 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | hermanstarikov |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/Hermanya/friendly-github |
Help Pagina-URL | https://github.com/Hermanya/friendly-github/issues |
Ondersteunde Talen | 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" ] } ] } |