Friendly GitHub
Makes GitHub a better Social Network
Friendly GitHub là gì?
Friendly GitHub là một tiện ích mở rộng Chrome được phát triển bởi hermanstarikov, và tính năng chính của nó là "Makes GitHub a better Social Network".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Friendly GitHub
Tải xuống các tệp mở rộng Friendly GitHub dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Whether we like it or not, GitHub is de-facto the Social Network for programmers. Let's make it less anti-social.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Friendly GitHub |
ID | phnhnfjginnlmbjlcdnjoochcceapfjb |
URL Chính Thức | https://chromewebstore.google.com/detail/friendly-github/phnhnfjginnlmbjlcdnjoochcceapfjb |
Mô tả | Makes GitHub a better Social Network |
Kích Thước Tệp | 44.63 KB |
Số Lần Cài Đặt | 111 |
Phiên Bản Hiện Tại | 18.9.13.2209 |
Cập Nhật Lần Cuối | 2018-09-13 |
Ngày Phát Hành | 2018-09-13 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | hermanstarikov |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Hermanya/friendly-github |
URL Trang Trợ Giúp | https://github.com/Hermanya/friendly-github/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |