Stamp

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

Stamp क्या है?

Stamp General Software द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Stamp can auto-generate release notes using the titles of commits or pull requests."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Stamp एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
        ]
    }
}