Stamp
Stamp can auto-generate release notes using the titles of commits or pull requests.
Hvad er Stamp?
Stamp er en Chrome-udvidelse udviklet af General Software, og dens hovedfunktion er "Stamp can auto-generate release notes using the titles of commits or pull requests.".
Udvidelsesskærmbilleder
Download Stamp-udvidelses-CRX-fil
Download Stamp-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Stamp can auto-generate release notes using the titles of commits or pull requests. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
| Officiel URL | https://chrome.google.com/webstore/detail/stamp/mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
| Beskrivelse | Stamp can auto-generate release notes using the titles of commits or pull requests. |
| Filstørrelse | 337 KB |
| Antal Installationer | 62 |
| Nuværende Version | 1.1.1 |
| Senest Opdateret | 2019-07-20 |
| Udgivelsesdato | 2019-07-19 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | General Software |
| Betalingsmetode | free |
| Udvidelseswebsted | https://stampit.dev |
| Hjælpeside-URL | https://stampit.dev |
| Understøttede Sprog | 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\/*"
]
}
} | |