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. 擴展基本資訊
| 名稱 | |
| ID | phnhnfjginnlmbjlcdnjoochcceapfjb |
| 官方網址 | 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"
]
}
]
} | |