Confluence Inline Comments
This extension displays the first inline comment on a confluence page
ما هو Confluence Inline Comments؟
Confluence Inline Comments هو إضافة Chrome تم تطويرها بواسطة wd.cristian، والميزة الرئيسية لها هي "This extension displays the first inline comment on a confluence page".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Confluence Inline Comments
قم بتنزيل ملفات الامتداد Confluence Inline Comments بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension displays the first inline comment on a confluence page.
Added a small bug fix to avoid double scroll.
- Version 4 adapts the code to the new editor's version. معلومات أساسية عن التمديد
| الاسم | |
| ID | hpfpfnjedfphnnfdfklkbejachlfoeog |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog |
| الوصف | This extension displays the first inline comment on a confluence page |
| حجم الملف | 14.21 KB |
| عدد التثبيتات | 55 |
| النسخة الحالية | 0.4 |
| آخر تحديث | 2020-02-20 |
| تاريخ النشر | 2020-02-20 |
| تقييم | 5.00/5 مجموع تقييمات 2 |
| المطور | wd.cristian |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Confluence Inline Comments",
"version": "0.4",
"manifest_version": 2,
"description": "This extension displays the first inline comment on a confluence page",
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.atlassian.net\/*"
],
"js": [
"fixDoubleBar.js"
],
"run_at": "document_end"
}
],
"permissions": [
"activeTab"
]
} | |