Load More Extension

load more! load more! load more!

O que é Load More Extension?

Load More Extension é uma extensão do Chrome desenvolvida por sugumura, e sua principal característica é "load more! load more! load more!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Load More Extension

Baixe arquivos de extensão Load More Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Load More Extension Load More Extension
ID oeajdfeikobhffmlfbmcgcdcaipfdkbg
URL Oficial https://chromewebstore.google.com/detail/load-more-extension/oeajdfeikobhffmlfbmcgcdcaipfdkbg
Descrição load more! load more! load more!
Tamanho do Arquivo 9.62 KB
Contagem de Instalações 140
Versão Atual 1.0
Última Atualização 2022-01-12
Data de Publicação 2022-01-12
Desenvolvedor sugumura
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/sugumura/load-more-extension
URL da Página de Ajuda https://github.com/sugumura/load-more-extension/issues
Idiomas Suportados 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"
    }
}