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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Stamp
قم بتنزيل ملفات الامتداد Stamp بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Stamp can auto-generate release notes using the titles of commits or pull requests. معلومات أساسية عن التمديد
| الاسم | |
| 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 |
| عنوان صفحة المساعدة | 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\/*"
]
}
} | |