GitHub Story Points
Chrome extension to see story points in GitHub projects
Co to jest GitHub Story Points?
GitHub Story Points to rozszerzenie Chrome opracowane przez banyan, a jego główną funkcją jest „Chrome extension to see story points in GitHub projects”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GitHub Story Points
Pobierz pliki rozszerzeń GitHub Story Points w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                        https://github.com/banyan/github-story-points                     Podstawowe informacje o rozszerzeniu
| Nazwa |   |  
| ID | fdhfdpafombnahpjjjcfopmehfofbdko | 
| Oficjalny URL | https://chromewebstore.google.com/detail/github-story-points/fdhfdpafombnahpjjjcfopmehfofbdko | 
| Opis | Chrome extension to see story points in GitHub projects | 
| Rozmiar pliku | 525 KB | 
| Liczba instalacji | 593 | 
| Aktualna Wersja | 0.3.0 | 
| Ostatnia Aktualizacja | 2020-08-17 | 
| Data Publikacji | 2019-08-09 | 
| Ocena | 3.00/5 Łącznie 1 Oceny | 
| Deweloper | banyan | 
| [email protected] | |
| Typ Płatności | free | 
| Strona Rozszerzenia | https://github.com/banyan/github-story-points | 
| Obsługiwane Języki | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Story Points",
    "description": "Chrome extension to see story points in GitHub projects",
    "short_name": "GitHub Story Points",
    "version": "0.3.0",
    "author": "Kohei Hasegawa",
    "homepage_url": "https:\/\/github.com\/banyan\/github-story-points",
    "icons": {
        "16": "assets\/images\/icon.png",
        "48": "assets\/images\/icon.png",
        "128": "assets\/images\/icon.png"
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "contextMenus",
        "activeTab"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*\/projects\/*"
            ],
            "js": [
                "dist\/story-points.js"
            ]
        }
    ]
}  |  |