OctoDraft
Save drafts of issues in github.
ما هو OctoDraft؟
OctoDraft هو إضافة Chrome تم تطويرها بواسطة Dan Wild، والميزة الرئيسية لها هي "Save drafts of issues in github.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة OctoDraft
قم بتنزيل ملفات الامتداد OctoDraft بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Adds a button to the issues section of github that allows to save a draft of your issue, in case you'd want to complete it later. When one reports an issue, an example of code is needed. Sometimes making a minimal, reproducible example just takes time, and you don't want to get distracted. It looks something like this: https://github.com/wildeyes/octodraft
معلومات أساسية عن التمديد
الاسم | |
ID | mjfaidoickdplapkfhajfkehpepmccfg |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/octodraft/mjfaidoickdplapkfhajfkehpepmccfg |
الوصف | Save drafts of issues in github. |
حجم الملف | 58.54 KB |
عدد التثبيتات | 109 |
النسخة الحالية | 1.0.1 |
آخر تحديث | 2018-10-04 |
تاريخ النشر | 2018-10-04 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Dan Wild |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/wildeyes/octodraft |
عنوان صفحة المساعدة | https://github.com/wildeyes/octodraft |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OctoDraft", "version": "1.0.1", "manifest_version": 2, "description": "Save drafts of issues in github.", "homepage_url": "https:\/\/github.com\/wildeyes\/octodraft", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "permissions": [ "https:\/\/github.com\/*", "webNavigation" ], "background": { "scripts": [ "src\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |