CODEOWNERS Filter
Filter PR files by GitHub CODEOWNERS
CODEOWNERS Filterとは何ですか?
CODEOWNERS Filterはdounanによって開発されたChromeの拡張機能で、その主な機能は「Filter PR files by GitHub CODEOWNERS」です。
拡張機能のスクリーンショット
CODEOWNERS Filter拡張機能のCRXファイルをダウンロード
CODEOWNERS Filter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Chrome extension to filter PR files by GitHub CODEOWNERS.
Features:
- No personal access token needed!
- Supports GitHub teams
- Works with private repos
The extension is open sourced and can be found here: https://github.com/dounan/codeowners-chrome
Icon made by Freepik from www.flaticon.com is licensed by CC 3.0 BY 拡張機能の基本情報
| 名前 | |
| ID | cdbbcicplakoajgcidhcihkffapomdhi |
| 公式URL | https://chromewebstore.google.com/detail/codeowners-filter/cdbbcicplakoajgcidhcihkffapomdhi |
| 説明 | Filter PR files by GitHub CODEOWNERS |
| ファイルサイズ | 16.52 KB |
| インストール数 | 11 |
| 現在のバージョン | 2.0.4 |
| 最終更新日 | 2023-05-05 |
| 公開日 | 2018-08-14 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | dounan |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Filter PR files by GitHub CODEOWNERS",
"version": "2.0.4",
"name": "CODEOWNERS Filter",
"background": {
"scripts": [
"background.bundle.js"
],
"persistent": false
},
"page_action": {
"default_icon": {
"16": "browser-icon-16.png",
"24": "browser-icon-24.png",
"32": "browser-icon-32.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*"
],
"css": [],
"js": [
"content.bundle.js"
]
}
],
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"manifest_version": 2,
"permissions": [
"webNavigation",
"*:\/\/github.com\/*"
]
} | |