GitHub Issues Instant Solutions

Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.

ما هو GitHub Issues Instant Solutions؟

GitHub Issues Instant Solutions هو إضافة Chrome تم تطويرها بواسطة Martin Galovic، والميزة الرئيسية لها هي "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة GitHub Issues Instant Solutions

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

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

                        Find Github Issue solution instantly — just click "Jump to the solution" button                    

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

الاسم GitHub Issues Instant Solutions GitHub Issues Instant Solutions
ID efdnmggekpecdpgllnnlehdobkealhem
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-issues-instant-sol/efdnmggekpecdpgllnnlehdobkealhem
الوصف Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.
حجم الملف 227 KB
عدد التثبيتات 67
النسخة الحالية 1.0.5
آخر تحديث 2020-02-29
تاريخ النشر 2020-02-29
تقييم 5.00/5 مجموع تقييمات 2
المطور Martin Galovic
نوع الدفع free
موقع الإضافة https://issues.martingalovic.com
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Issues Instant Solutions",
    "version": "1.0.5",
    "description": "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.",
    "icons": {
        "16": "public\/icons\/icon_16.png",
        "48": "public\/icons\/icon_48.png",
        "128": "public\/icons\/icon_128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "public\/background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/www.github.com\/*",
                "http:\/\/github.com\/*",
                "http:\/\/www.github.com\/*"
            ],
            "css": [
                "public\/github_content_styles.css"
            ],
            "js": [
                "public\/underscore.min.js",
                "public\/jquery.min.js",
                "public\/github_content_script.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/www.github.com\/*",
        "http:\/\/github.com\/*",
        "http:\/\/www.github.com\/*"
    ],
    "browser_action": {
        "default_icon": "public\/icons\/icon_16.png",
        "default_popup": "public\/html\/popup.html"
    }
}