Lovely forks
Show notable forks of GitHub projects.
Lovely forksคืออะไร?
Lovely forks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://musicallyut.xyz และคุณลักษณะหลักของมันคือ "Show notable forks of GitHub projects."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lovely forks
ดาวน์โหลดไฟล์ส่วนขยาย Lovely forks ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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]" } } } |