Group phabricator notifications
Groups phabricator notifications
ما هو Group phabricator notifications؟
Group phabricator notifications هو إضافة Chrome تم تطويرها بواسطة joakin، والميزة الرئيسية لها هي "Groups phabricator notifications".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Group phabricator notifications
قم بتنزيل ملفات الامتداد Group phabricator notifications بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension makes the phabricator notifications be grouped per task, so that they are less noisy to read. You can expand the task to see the actual changes in it, or mark as read without even going to the task. Applies to all phabricator.*.* and *.phabricator.* urls. Source is at https://github.com/joakin/group-phabricator-notifications
معلومات أساسية عن التمديد
الاسم | Group phabricator notifications |
ID | anjockgdedgaiionihlpdcjijpohipdj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/group-phabricator-notific/anjockgdedgaiionihlpdcjijpohipdj |
الوصف | Groups phabricator notifications |
حجم الملف | 430 KB |
عدد التثبيتات | 36 |
النسخة الحالية | 1.4 |
آخر تحديث | 2020-06-06 |
تاريخ النشر | 2020-06-05 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | joakin |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/joakin/group-phabricator-notifications |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Group phabricator notifications", "description": "Groups phabricator notifications", "version": "1.4", "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "include_globs": [ "*:\/\/*.phabricator.*\/notification\/*", "*:\/\/phabricator.*.*\/notification\/*" ], "exclude_globs": [ "*:\/\/*\/notification\/query\/edit\/" ], "js": [ "index.js" ] } ], "permissions": [] } |