Stamp
Stamp can auto-generate release notes using the titles of commits or pull requests.
What is Stamp?
Stamp is a Chrome extension developed by General Software, and its main feature is "Stamp can auto-generate release notes using the titles of commits or pull requests.".
Extension Screenshots
Download Stamp Extension CRX File
Download Stamp extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Stamp can auto-generate release notes using the titles of commits or pull requests.
Extension Basic Information
Name | |
ID | mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
Official URL | https://chrome.google.com/webstore/detail/stamp/mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
Description | Stamp can auto-generate release notes using the titles of commits or pull requests. |
File Size | 337 KB |
Installation Count | 62 |
Current Version | 1.1.1 |
Last Updated | 2019-07-20 |
Publish Date | 2019-07-19 |
Rating | 5.00/5 Total 1 Ratings |
Developer | General Software |
Payment Type | free |
Extension Website | https://stampit.dev |
Help Page URL | https://stampit.dev |
Supported Languages | 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\/*" ] } } |