Stamp

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

Wat is Stamp?

Stamp is een Chrome-extensie ontwikkeld door General Software, en de belangrijkste functie is "Stamp can auto-generate release notes using the titles of commits or pull requests.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Stamp

Download Stamp-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Stamp Stamp
ID mjjmhmbcinmgnkmfkcifeiijkecdpdhm
Officiële URL https://chrome.google.com/webstore/detail/stamp/mjjmhmbcinmgnkmfkcifeiijkecdpdhm
Beschrijving Stamp can auto-generate release notes using the titles of commits or pull requests.
Bestandsgrootte 337 KB
Aantal Installaties 62
Huidige Versie 1.1.1
Laatst Bijgewerkt 2019-07-20
Publicatiedatum 2019-07-19
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar General Software
Betalingswijze free
Extensiewebsite https://stampit.dev
Help Pagina-URL https://stampit.dev
Ondersteunde Talen 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\/*"
        ]
    }
}