Stamp
Stamp can auto-generate release notes using the titles of commits or pull requests.
Apa itu Stamp?
Stamp adalah ekstensi Chrome yang dikembangkan oleh General Software, dan fitur utamanya adalah "Stamp can auto-generate release notes using the titles of commits or pull requests.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Stamp
Unduh file ekstensi Stamp dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Stamp can auto-generate release notes using the titles of commits or pull requests.
Informasi Dasar Ekstensi
Nama | |
ID | mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
URL Resmi | https://chrome.google.com/webstore/detail/stamp/mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
Deskripsi | Stamp can auto-generate release notes using the titles of commits or pull requests. |
Ukuran File | 337 KB |
Jumlah Instalasi | 62 |
Versi Saat Ini | 1.1.1 |
Terakhir Diperbarui | 2019-07-20 |
Tanggal Publikasi | 2019-07-19 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | General Software |
Tipe Pembayaran | free |
Situs Ekstensi | https://stampit.dev |
URL Halaman Bantuan | https://stampit.dev |
Bahasa yang Didukung | 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\/*" ] } } |