Github compare tags
Adds tags to the compare page of Github.
什么是Github compare tags?
Github compare tags是由marpo60开发的Chrome扩展程序,该扩展的主要功能是“Adds tags to the compare page of Github.”。
扩展截图
下载Github compare tags扩展crx文件
下载Github compare tags扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Add into the dropdown of Github compare page the tags of the repositories.
扩展基本信息
名称 | Github compare tags |
ID | pjkolicadkdcfgjjoopdpleenckeajkk |
官方URL | https://chromewebstore.google.com/detail/github-compare-tags/pjkolicadkdcfgjjoopdpleenckeajkk |
简介 | Adds tags to the compare page of Github. |
文件大小 | 8.43 KB |
安装次数 | 62 |
当前版本 | 0.0.6 |
更新时间 | 2019-06-01 |
上架时间 | 2019-06-01 |
评分 | 5.00/5 共1次评分 |
开发者 | marpo60 |
付费类型 | free |
扩展官网 | https://github.com/marpo60/github-compare-tags |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github compare tags", "version": "0.0.6", "manifest_version": 2, "description": "Adds tags to the compare page of Github.", "icons": { "16": "icons\/icon.png", "48": "icons\/icon.png", "128": "icons\/icon.png" }, "permissions": [ "storage", "https:\/\/github.com\/*" ], "background": { "scripts": [ "src\/hot-reload.js" ] }, "options_ui": { "page": "src\/options.html", "chrome_style": true }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*" ], "js": [ "src\/inject.js" ] } ] } |