Stamp
Stamp can auto-generate release notes using the titles of commits or pull requests.
Cos'è Stamp?
Stamp è un'estensione di Chrome sviluppata da General Software, e la sua funzione principale è "Stamp can auto-generate release notes using the titles of commits or pull requests.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Stamp
Scarica i file di estensione Stamp in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Stamp can auto-generate release notes using the titles of commits or pull requests. Informazioni di Base sull'Estensione
| Nome | |
| ID | mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
| URL Ufficiale | https://chrome.google.com/webstore/detail/stamp/mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
| Descrizione | Stamp can auto-generate release notes using the titles of commits or pull requests. |
| Dimensione del File | 337 KB |
| Conteggio Installazioni | 62 |
| Versione Corrente | 1.1.1 |
| Ultimo Aggiornamento | 2019-07-20 |
| Data di Pubblicazione | 2019-07-19 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | General Software |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://stampit.dev |
| URL della Pagina di Aiuto | https://stampit.dev |
| Lingue Supportate | 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\/*"
]
}
} | |