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