GitHub Points
Add storypoints feature to GitHub
ما هو GitHub Points؟
GitHub Points هو إضافة Chrome تم تطويرها بواسطة mazrica inc.، والميزة الرئيسية لها هي "Add storypoints feature to GitHub".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة GitHub Points
قم بتنزيل ملفات الامتداد GitHub Points بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Add storypoints feature to GitHub. Features: - No GitHub access tokens / authentication required - Add points to new issue/PR - Check points in issue/PR page - Quickly update points by editing the title - Show total points in issues/PR tab, filters and searches are also supported - Milestones, Projects are also supported - Easily hide badges and summaries from popup or keyboard shortcut "ctrl + option(alt) + p"
معلومات أساسية عن التمديد
الاسم | GitHub Points |
ID | gblajdemjpibbajhifkbbngkllejempi |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/github-points/gblajdemjpibbajhifkbbngkllejempi |
الوصف | Add storypoints feature to GitHub |
حجم الملف | 31.53 KB |
عدد التثبيتات | 44 |
النسخة الحالية | 0.1.1 |
آخر تحديث | 2018-07-05 |
تاريخ النشر | 2018-07-05 |
المطور | mazrica inc. |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/mazrica/chrome-github-points |
عنوان صفحة المساعدة | https://github.com/mazrica/chrome-github-points/issues |
عنوان صفحة سياسة الخصوصية | https://mazrica.com/privacy-policy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub Points", "short_name": "GitHub Points", "description": "Add storypoints feature to GitHub", "version": "0.1.1", "author": "nanopx", "browser_action": { "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/buttons.github.io; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "include_globs": [ "*" ], "js": [ "scripts\/content-script.bundle.js" ], "run_at": "document_idle" } ], "icons": { "16": "github-points-icon-16.png", "32": "github-points-icon-32.png", "24": "github-points-icon-24.png", "48": "github-points-icon-48.png", "128": "github-points-icon-128.png" }, "permissions": [ "storage" ] } |