Useful Forks

To list GitHub forks ordered by stars, with additional information and automatic filtering of irrelevant ones.

ما هو Useful Forks؟

Useful Forks هو إضافة Chrome تم تطويرها بواسطة https://useful-forks.github.io، والميزة الرئيسية لها هي "To list GitHub forks ordered by stars, with additional information and automatic filtering of irrelevant ones.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Useful Forks

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

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

                        The plugin inserts a button next to the "Fork" button when you visit a GitHub repository. Clicking on it will open a new tab which will use the online tool to scan the forks.
This tool aims at increasing the discoverability of useful forks of open-source projects.
The criteria is simple: if a fork was created, but never received any other activity on its main branch, it is filtered out.
For sharing: the results can be exported as CSV, or you can point people to the quick-link URL.                    

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

الاسم Useful Forks Useful Forks
ID aflbdmaojedofngiigjpnlabhginodbf
عنوان URL الرسمي https://chromewebstore.google.com/detail/useful-forks/aflbdmaojedofngiigjpnlabhginodbf
الوصف To list GitHub forks ordered by stars, with additional information and automatic filtering of irrelevant ones.
حجم الملف 13.4 KB
عدد التثبيتات 575
النسخة الحالية 2.2.3
آخر تحديث 2023-08-03
تاريخ النشر 2023-01-21
تقييم 5.00/5 مجموع تقييمات 7
المطور https://useful-forks.github.io
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/useful-forks/useful-forks.github.io/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Useful Forks",
    "version": "2.2.3",
    "description": "To list GitHub forks ordered by stars, with additional information and automatic filtering of irrelevant ones.",
    "icons": {
        "16": "images\/useful-forks-16.png",
        "32": "images\/useful-forks-32.png",
        "48": "images\/useful-forks-48.png",
        "128": "images\/useful-forks-128.png"
    },
    "host_permissions": [
        "*:\/\/github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "js": [
                "useful-forks.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ]
}