Stamp
Stamp can auto-generate release notes using the titles of commits or pull requests.
Stamp là gì?
Stamp là một tiện ích mở rộng Chrome được phát triển bởi General Software, và tính năng chính của nó là "Stamp can auto-generate release notes using the titles of commits or pull requests.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Stamp
Tải xuống các tệp mở rộng Stamp dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Stamp can auto-generate release notes using the titles of commits or pull requests.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
URL Chính Thức | https://chrome.google.com/webstore/detail/stamp/mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
Mô tả | Stamp can auto-generate release notes using the titles of commits or pull requests. |
Kích Thước Tệp | 337 KB |
Số Lần Cài Đặt | 62 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2019-07-20 |
Ngày Phát Hành | 2019-07-19 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | General Software |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://stampit.dev |
URL Trang Trợ Giúp | https://stampit.dev |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } } |