CODEOWNERS Filter
Filter PR files by GitHub CODEOWNERS
Wat is CODEOWNERS Filter?
CODEOWNERS Filter is een Chrome-extensie ontwikkeld door dounan, en de belangrijkste functie is "Filter PR files by GitHub CODEOWNERS".
Extensie Screenshots
Download het CRX-bestand van de extensie CODEOWNERS Filter
Download CODEOWNERS Filter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | cdbbcicplakoajgcidhcihkffapomdhi |
| Officiële URL | https://chromewebstore.google.com/detail/codeowners-filter/cdbbcicplakoajgcidhcihkffapomdhi |
| Beschrijving | Filter PR files by GitHub CODEOWNERS |
| Bestandsgrootte | 16.52 KB |
| Aantal Installaties | 11 |
| Huidige Versie | 2.0.4 |
| Laatst Bijgewerkt | 2023-05-05 |
| Publicatiedatum | 2018-08-14 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | dounan |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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\/*"
]
} | |