Friendly GitHub
Makes GitHub a better Social Network
什么是Friendly GitHub?
Friendly GitHub是由hermanstarikov开发的Chrome扩展程序,该扩展的主要功能是“Makes GitHub a better Social Network”。
扩展截图
下载Friendly GitHub扩展crx文件
下载Friendly GitHub扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Whether we like it or not, GitHub is de-facto the Social Network for programmers. Let's make it less anti-social.
扩展基本信息
名称 | Friendly GitHub |
ID | phnhnfjginnlmbjlcdnjoochcceapfjb |
官方URL | https://chromewebstore.google.com/detail/friendly-github/phnhnfjginnlmbjlcdnjoochcceapfjb |
简介 | Makes GitHub a better Social Network |
文件大小 | 44.63 KB |
安装次数 | 111 |
当前版本 | 18.9.13.2209 |
更新时间 | 2018-09-13 |
上架时间 | 2018-09-13 |
评分 | 5.00/5 共2次评分 |
开发者 | hermanstarikov |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Hermanya/friendly-github |
帮助页面URL | https://github.com/Hermanya/friendly-github/issues |
支持的语言 | 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" ] } ] } |