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.”。

扩展截图

screenshot

下载Stamp扩展crx文件

下载Stamp扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Stamp can auto-generate release notes using the titles of commits or pull requests.                    

扩展基本信息

名称 Stamp Stamp
ID mjjmhmbcinmgnkmfkcifeiijkecdpdhm
官方URL 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\/*"
        ]
    }
}