Stamp
Stamp can auto-generate release notes using the titles of commits or pull requests.
什麼是Stamp?
Stamp是由General Software開發的Chrome擴展程式,該擴展的主要功能是“Stamp can auto-generate release notes using the titles of commits or pull requests.”。
擴展截圖
下載Stamp擴展crx文件
下載Stamp擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Stamp can auto-generate release notes using the titles of commits or pull requests.
擴展基本資訊
名稱 | |
ID | mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
官方網址 | https://chrome.google.com/webstore/detail/stamp/mjjmhmbcinmgnkmfkcifeiijkecdpdhm |
簡介 | Stamp can auto-generate release notes using the titles of commits or pull requests. |
檔案大小 | 337 KB |
安裝次數 | 62 |
目前版本 | 1.1.1 |
更新時間 | 2019-07-20 |
上架時間 | 2019-07-19 |
評分 | 5.00/5 共 1 次評分 |
開發者 | General Software |
付費類型 | free |
擴展官網 | https://stampit.dev |
說明頁面URL | https://stampit.dev |
支援的語言 | 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\/*" ] } } |