Stamp

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

Stampคืออะไร?

Stamp เป็นส่วนขยายของ Chrome ที่พัฒนาโดย General Software และคุณลักษณะหลักของมันคือ "Stamp can auto-generate release notes using the titles of commits or pull requests."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stamp

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
        ]
    }
}