Github Issue Reactions

List a link of reactions on a github issue and pull request page

ما هو Github Issue Reactions؟

Github Issue Reactions هو إضافة Chrome تم تطويرها بواسطة Lasse Norfeldt، والميزة الرئيسية لها هي "List a link of reactions on a github issue and pull request page".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Github Issue Reactions

قم بتنزيل ملفات الامتداد Github Issue Reactions بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Use it to get a quick overview of good comments in a long GitHub issue conversation.

Repo to the extension can be found here:
Github at Norfeldt/github-issue-reactions-browser-extension                    

معلومات أساسية عن التمديد

الاسم Github Issue Reactions Github Issue Reactions
ID enekincdenmmbpgkbhflknhaphpajnfd
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd
الوصف List a link of reactions on a github issue and pull request page
حجم الملف 74.39 KB
عدد التثبيتات 1,053
النسخة الحالية 2.4.4
آخر تحديث 2023-06-18
تاريخ النشر 2022-01-10
تقييم 4.33/5 مجموع تقييمات 3
المطور Lasse Norfeldt
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Github Issue Reactions",
    "version": "2.4.4",
    "description": "List a link of reactions on a github issue and pull request page",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png",
        "256": "icon_256.png"
    },
    "host_permissions": [
        "https:\/\/www.github.com\/",
        "http:\/\/www.github.com\/"
    ]
}