Load More Extension

load more! load more! load more!

ما هو Load More Extension؟

Load More Extension هو إضافة Chrome تم تطويرها بواسطة sugumura، والميزة الرئيسية لها هي "load more! load more! load more!".

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

screenshot

تحميل ملف CRX للإضافة Load More Extension

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

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

                        Have you ever hit the "load more" button multiple times on a long, long issue on github?

This extension automates that tedious task for you.
Just click on the icon and it will show you all the abbreviated comments.

If you have ever pressed the "load more" button more than once, you should use it.                    

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

الاسم Load More Extension Load More Extension
ID oeajdfeikobhffmlfbmcgcdcaipfdkbg
عنوان URL الرسمي https://chromewebstore.google.com/detail/load-more-extension/oeajdfeikobhffmlfbmcgcdcaipfdkbg
الوصف load more! load more! load more!
حجم الملف 9.62 KB
عدد التثبيتات 140
النسخة الحالية 1.0
آخر تحديث 2022-01-12
تاريخ النشر 2022-01-12
المطور sugumura
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/sugumura/load-more-extension
عنوان صفحة المساعدة https://github.com/sugumura/load-more-extension/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Load More Extension",
    "description": "load more! load more! load more!",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*\/issues\/*",
                "https:\/\/github.com\/*\/*\/pull\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "views\/options.html",
        "open_in_tab": false
    },
    "commands": {
        "load-more": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "load more! load more! load more!"
        }
    },
    "host_permissions": [
        "https:\/\/github.com\/"
    ],
    "permissions": [
        "activeTab",
        "notifications",
        "webRequest",
        "storage"
    ],
    "icons": {
        "16": "assets\/icons\/load_more_16.png",
        "48": "assets\/icons\/load_more_48.png",
        "128": "assets\/icons\/load_more_128.png"
    }
}