Friendly GitHub
Makes GitHub a better Social Network
Cos'è Friendly GitHub?
Friendly GitHub è un'estensione di Chrome sviluppata da hermanstarikov, e la sua funzione principale è "Makes GitHub a better Social Network".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Friendly GitHub
Scarica i file di estensione Friendly GitHub in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Whether we like it or not, GitHub is de-facto the Social Network for programmers. Let's make it less anti-social.
Informazioni di Base sull'Estensione
Nome | Friendly GitHub |
ID | phnhnfjginnlmbjlcdnjoochcceapfjb |
URL Ufficiale | https://chromewebstore.google.com/detail/friendly-github/phnhnfjginnlmbjlcdnjoochcceapfjb |
Descrizione | Makes GitHub a better Social Network |
Dimensione del File | 44.63 KB |
Conteggio Installazioni | 111 |
Versione Corrente | 18.9.13.2209 |
Ultimo Aggiornamento | 2018-09-13 |
Data di Pubblicazione | 2018-09-13 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | hermanstarikov |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Hermanya/friendly-github |
URL della Pagina di Aiuto | https://github.com/Hermanya/friendly-github/issues |
Lingue Supportate | 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" ] } ] } |