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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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