Lovely forks
Show notable forks of GitHub projects.
Lovely forksとは何ですか?
Lovely forksはhttps://musicallyut.xyzによって開発されたChromeの拡張機能で、その主な機能は「Show notable forks of GitHub projects.」です。
拡張機能のスクリーンショット
Lovely forks拡張機能のCRXファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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]"
}
}
} | |