GitHub Remarks
a chrome extension that can give github repos your own remarks
什麼是GitHub Remarks?
GitHub Remarks是由hanzichi開發的Chrome擴展程式,該擴展的主要功能是“a chrome extension that can give github repos your own remarks”。
擴展截圖
下載GitHub Remarks擴展crx文件
下載GitHub Remarks擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
a chrome extension that can give github repos your own remarks 擴展基本資訊
| 名稱 | |
| ID | pkepkgjchpahghcfdmdokoonapagblem |
| 官方網址 | https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem |
| 簡介 | a chrome extension that can give github repos your own remarks |
| 檔案大小 | 178 KB |
| 安裝次數 | 45 |
| 目前版本 | 1.2.1 |
| 更新時間 | 2018-05-28 |
| 上架時間 | 2018-05-27 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | hanzichi |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/hanzichi/github-remarks |
| 說明頁面URL | https://github.com/hanzichi/github-remarks/issues |
| 支援的語言 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub Remarks",
"manifest_version": 2,
"version": "1.2.1",
"description": "a chrome extension that can give github repos your own remarks",
"icons": {
"16": "icons\/icon_16.png",
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"browser_action": {
"default_title": "",
"default_icon": {
"19": "icons\/icon_19.png",
"38": "icons\/icon_38.png"
}
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*\/*"
],
"js": [
"content-scripts\/repoDetail.js"
],
"css": [],
"run_at": "document_end"
},
{
"matches": [
"*:\/\/github.com\/*"
],
"js": [
"lib\/jquery.min.js",
"lib\/list.min.js",
"content-scripts\/stars.js"
],
"css": [],
"run_at": "document_end"
}
]
} | |