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\/*"
        ]
    }
}