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 |
| Eメール | [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"
}
} | |