Repo creation date checker for Github
Check creation date and last updated date of repo's on Github.
什么是Repo creation date checker for Github?
Repo creation date checker for Github是由http://github.com/NeekSandhu开发的Chrome扩展程序,该扩展的主要功能是“Check creation date and last updated date of repo's on Github.”。
扩展截图
下载Repo creation date checker for Github扩展crx文件
下载Repo creation date checker for Github扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Ever wondered how long a project has been around? OR you quickly want to know when it was last updated. This simple extension adds two additional labels in the repo details bar, one for when the repo was created and the other for when it was last updated!! Source code/Contribution https://github.com/NeekSandhu/Repo-creation-date-checker-for-Github
扩展基本信息
名称 | |
ID | gmfnjoaiijannkmjppchbknjdghpmleg |
官方URL | https://chromewebstore.google.com/detail/repo-creation-date-checke/gmfnjoaiijannkmjppchbknjdghpmleg |
简介 | Check creation date and last updated date of repo's on Github. |
文件大小 | 97.66 KB |
安装次数 | 250 |
当前版本 | 1.1.0 |
更新时间 | 2018-01-12 |
上架时间 | 2018-01-12 |
评分 | 2.67/5 共3次评分 |
开发者 | http://github.com/NeekSandhu |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Repo creation date checker for Github", "version": "1.1.0", "description": "Check creation date and last updated date of repo's on Github.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "author": "http:\/\/github.com\/NeekSandhu", "background": { "scripts": [ "src\/js\/bg.js" ], "persistent": true }, "homepage_url": "http:\/\/github.com\/NeekSandhu", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "src\/js\/injected.js" ], "css": [ "src\/css\/main.css" ], "run_at": "document_start" } ] } |