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 | 
| 官方URL | 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"
        }
    ]
}  |  |