Github Active Forks

Adds an active forks section on a Github Page

O que é Github Active Forks?

Github Active Forks é uma extensão do Chrome desenvolvida por yashx, e sua principal característica é "Adds an active forks section on a Github Page".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Github Active Forks

Baixe arquivos de extensão Github Active Forks 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

                        Open Source Chrome Extension that adds an active forks section on a Github Repository Page

Repo: https://github.com/yashx/github-active-forks

Features
1. Select the number of forks you want to see. (Min 1 and Max 100)
2. Sort forks of the repository by most stared, last commit or most sub forks.
3. No additional Github API calls are made when the above mentioned options are changed so you can modify them without worrying about rate limits.                    

Informações Básicas da Extensão

Nome Github Active Forks Github Active Forks
ID oflkkabfokadmncdbhdggeedngllccak
URL Oficial https://chromewebstore.google.com/detail/github-active-forks/oflkkabfokadmncdbhdggeedngllccak
Descrição Adds an active forks section on a Github Page
Tamanho do Arquivo 170 KB
Contagem de Instalações 177
Versão Atual 0.0.3
Última Atualização 2022-03-19
Data de Publicação 2021-08-19
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor yashx
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/yashx/github-active-forks
URL da Página de Política de Privacidade https://sites.google.com/view/yashx/privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Active Forks",
    "description": "Adds an active forks section on a Github Page",
    "version": "0.0.3",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup_options.html",
        "default_icon": {
            "16": ".\/images\/logo-16.png",
            "32": ".\/images\/logo-32.png",
            "48": ".\/images\/logo-48.png",
            "128": ".\/images\/logo-128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": ".\/images\/logo-16.png",
        "32": ".\/images\/logo-32.png",
        "48": ".\/images\/logo-48.png",
        "128": ".\/images\/logo-128.png"
    }
}