Stamp
Stamp can auto-generate release notes using the titles of commits or pull requests.
Co to jest Stamp?
Stamp to rozszerzenie Chrome opracowane przez General Software, a jego główną funkcją jest „Stamp can auto-generate release notes using the titles of commits or pull requests.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Stamp
Pobierz pliki rozszerzeń Stamp 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
Stamp can auto-generate release notes using the titles of commits or pull requests. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
| Oficjalny URL | https://chrome.google.com/webstore/detail/stamp/mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
| Opis | Stamp can auto-generate release notes using the titles of commits or pull requests. |
| Rozmiar pliku | 337 KB |
| Liczba instalacji | 62 |
| Aktualna Wersja | 1.1.1 |
| Ostatnia Aktualizacja | 2019-07-20 |
| Data Publikacji | 2019-07-19 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | General Software |
| Typ Płatności | free |
| Strona Rozszerzenia | https://stampit.dev |
| Adres URL Strony Pomocy | https://stampit.dev |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Stamp",
"short_name": "stamp",
"version": "1.1.1",
"background": {
"scripts": [
"js\/background.js"
]
},
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*",
"https:\/\/harvest.sh\/*",
"https:\/\/stampit.dev\/*"
],
"js": [
"js\/content.js"
]
}
],
"icons": {
"128": "icons\/128.png"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": "icons\/128.png"
},
"permissions": [
"activeTab",
"storage",
"https:\/\/*.github.com\/*"
],
"externally_connectable": {
"matches": [
"https:\/\/harvest.sh\/*",
"https:\/\/stampit.dev\/*"
]
}
} | |