Github - Date of creation
Display a date of creation of a repository hosted on Github
什么是Github - Date of creation?
Github - Date of creation是由lvarayut开发的Chrome扩展程序,该扩展的主要功能是“Display a date of creation of a repository hosted on Github”。
扩展截图
下载Github - Date of creation扩展crx文件
下载Github - Date of creation扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
## Highlights
- Beautiful calendar icon in the summary bar on a repository page
- Customizable date format followed [Moment](https://momentjs.com/docs/#/displaying) format pattern
- Best performance by storing all fetched URIs in the Storage 扩展基本信息
| 名称 | |
| ID | dgnomofcgpdalifennakmbocjpdiafhg |
| 官方URL | https://chromewebstore.google.com/detail/github-date-of-creation/dgnomofcgpdalifennakmbocjpdiafhg |
| 简介 | Display a date of creation of a repository hosted on Github |
| 文件大小 | 477 KB |
| 安装次数 | 996 |
| 当前版本 | 1.0.5 |
| 更新时间 | 2024-01-07 |
| 上架时间 | 2020-06-27 |
| 评分 | 3.93/5 共15次评分 |
| 开发者 | lvarayut |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/lvarayut/github-date-of-creation |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github - Date of creation",
"version": "1.0.5",
"manifest_version": 3,
"description": "Display a date of creation of a repository hosted on Github",
"homepage_url": "https:\/\/github.com\/lvarayut\/github-date-of-creation",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"author": "Varayut Lerdkanlayanawat",
"action": {
"default_icon": "icons\/icon19.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"http:\/\/github.com\/*",
"https:\/\/github.com\/*"
],
"background": {
"service_worker": "src\/bg\/index.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/github.com\/*",
"https:\/\/github.com\/*"
],
"js": [
"src\/vendors\/moment.min.js",
"src\/constant\/index.js",
"src\/inject\/index.js"
]
}
],
"options_ui": {
"page": "src\/option\/index.html"
}
} | |