Load More Extension

load more! load more! load more!

什么是Load More Extension?

Load More Extension是由sugumura开发的Chrome扩展程序,该扩展的主要功能是“load more! load more! load more!”。

扩展截图

screenshot

下载Load More Extension扩展crx文件

下载Load More Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
帮助页面URL 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"
    }
}