Lovely forks

Show notable forks of GitHub projects.

Lovely forks란 무엇입니까?

Lovely forks은(는) https://musicallyut.xyz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show notable forks of GitHub projects."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Lovely forks 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        An extension to help you notice notable forks of GitHub projects.

Sometimes on GitHub, projects are abandoned by the original authors and the development continues on a fork. However, the original repository is often not updated to let new-comers see that. I have many times wasted effort on making a pull-request or installing old buggy versions of projects when the community had already moved to a fork.

To make matters worse, the old projects usually have higher search-engine traffic and a lot more stars than the forks. This makes the forks even harder to find. This extension tries to remedy that by adding a subscript under the name of the repository on the Github page of all projects with a link to the most notable fork (i.e. the fork with the most stars), if such a fork exists.                    

확장 프로그램 기본 정보

이름 Lovely forks Lovely forks
ID ialbpcipalajnakfondkflpkagbkdoib
공식 URL https://chromewebstore.google.com/detail/lovely-forks/ialbpcipalajnakfondkflpkagbkdoib
설명 Show notable forks of GitHub projects.
파일 크기 945 KB
설치 횟수 1,782
현재 버전 3.7.3
최근 업데이트 2023-11-07
출시 날짜 2020-05-21
평점 4.62/5 총 13 개의 평점
개발자 https://musicallyut.xyz
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/musically-ut/lovely-forks
도움말 페이지 URL https://github.com/musically-ut/lovely-forks/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lovely forks",
    "version": "3.7.3",
    "manifest_version": 3,
    "description": "Show notable forks of GitHub projects.",
    "homepage_url": "https:\/\/github.com\/musically-ut\/lovely-forks",
    "icons": {
        "128": "webext\/icons\/Heart_and_fork_inside_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "webext\/icons\/star.svg",
                "webext\/icons\/flame.svg"
            ],
            "matches": [
                "*:\/\/github.com\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "webext\/options_ui\/options.html"
    },
    "host_permissions": [
        "*:\/\/github.com\/*",
        "*:\/\/api.github.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "css": [
                "webext\/data\/style.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "webext\/data\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}