Stamp
Stamp can auto-generate release notes using the titles of commits or pull requests.
Vad är Stamp?
Stamp är en Chrome-tillägg utvecklad av General Software, och dess huvudfunktion är "Stamp can auto-generate release notes using the titles of commits or pull requests.".
Tilläggsskärmbilder
Ladda ner Stamp-förlängningens CRX-fil
Ladda ner Stamp-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Stamp can auto-generate release notes using the titles of commits or pull requests.
Grundläggande Information om Tillägg
Namn | |
ID | mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
Officiell webbadress | https://chrome.google.com/webstore/detail/stamp/mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
Beskrivning | Stamp can auto-generate release notes using the titles of commits or pull requests. |
Filstorlek | 337 KB |
Antal Installationer | 62 |
Aktuell Version | 1.1.1 |
Senast Uppdaterad | 2019-07-20 |
Publiceringsdatum | 2019-07-19 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | General Software |
Betalningssätt | free |
Tilläggswebbplats | https://stampit.dev |
Hjälpsida URL | https://stampit.dev |
Stödda Språk | 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\/*" ] } } |