mirror of
https://github.com/jaywcjlove/awesome-mac.git
synced 2026-04-11 02:11:46 +08:00
Improve RSS HTML compatibility
This commit is contained in:
parent
f8b7fa2ad9
commit
8a32bca614
@ -363,10 +363,11 @@ function parseFeedItemsFromXml(xml) {
|
||||
const guid = decodeXml(extractXmlTag(itemXml, 'guid'));
|
||||
const pubDate = decodeXml(extractXmlTag(itemXml, 'pubDate'));
|
||||
const category = decodeXml(extractXmlTag(itemXml, 'category'));
|
||||
const description = decodeXml(extractXmlTag(itemXml, 'description')).replace(
|
||||
/<br\s*\/?>/gi,
|
||||
'\n',
|
||||
);
|
||||
const contentEncoded = unwrapCdata(extractXmlTag(itemXml, 'content:encoded'));
|
||||
const description = (
|
||||
contentEncoded ||
|
||||
decodeXml(extractXmlTag(itemXml, 'description'))
|
||||
).replace(/<br\s*\/?>/gi, '\n');
|
||||
|
||||
const commitHash = guid.split(':')[0] || '';
|
||||
const descriptionLines = description.split('\n');
|
||||
@ -444,7 +445,8 @@ function buildFeedXml({ items, title, description, language, feedUrl }) {
|
||||
const xmlItems = items
|
||||
.map((item) => {
|
||||
const guid = `${item.commitHash}:${item.name}`;
|
||||
const summary = buildItemDescription(item);
|
||||
const summaryHtml = buildItemDescription(item);
|
||||
const summaryText = buildItemPlainDescription(item);
|
||||
|
||||
return [
|
||||
' <item>',
|
||||
@ -453,7 +455,8 @@ function buildFeedXml({ items, title, description, language, feedUrl }) {
|
||||
` <guid isPermaLink="false">${escapeXml(guid)}</guid>`,
|
||||
` <pubDate>${new Date(item.committedAt).toUTCString()}</pubDate>`,
|
||||
` <category>${escapeXml(item.category)}</category>`,
|
||||
` <description>${summary}</description>`,
|
||||
` <description>${escapeXml(summaryText)}</description>`,
|
||||
` <content:encoded><![CDATA[${summaryHtml}]]></content:encoded>`,
|
||||
' </item>',
|
||||
].join('\n');
|
||||
})
|
||||
@ -461,7 +464,7 @@ function buildFeedXml({ items, title, description, language, feedUrl }) {
|
||||
|
||||
return [
|
||||
'<?xml version="1.0" encoding="UTF-8"?>',
|
||||
'<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">',
|
||||
'<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">',
|
||||
' <channel>',
|
||||
` <title>${escapeXml(title)}</title>`,
|
||||
` <link>${escapeXml(channelLink)}</link>`,
|
||||
@ -533,6 +536,22 @@ function buildItemDescription(item) {
|
||||
.join('<br/>');
|
||||
}
|
||||
|
||||
// Render a plain-text fallback for RSS readers that ignore HTML in description.
|
||||
function buildItemPlainDescription(item) {
|
||||
return [
|
||||
`Category: ${item.category}`,
|
||||
`App: ${item.name}`,
|
||||
`Description: ${item.description}`,
|
||||
item.websiteUrl ? `Website: ${item.websiteUrl}` : '',
|
||||
item.sourceUrl ? `Open Source: ${item.sourceUrl}` : '',
|
||||
item.appStoreUrl ? `App Store: ${item.appStoreUrl}` : '',
|
||||
`Commit: ${item.commitSubject}`,
|
||||
item.commitUrl ? `Commit URL: ${item.commitUrl}` : '',
|
||||
]
|
||||
.filter(Boolean)
|
||||
.join('\n');
|
||||
}
|
||||
|
||||
// Normalize the repository URL so commit links can be built consistently.
|
||||
function normalizeRepositoryUrl(url) {
|
||||
if (!url) return '';
|
||||
@ -584,3 +603,10 @@ function decodeXml(value) {
|
||||
.replace(/</g, '<')
|
||||
.replace(/&/g, '&');
|
||||
}
|
||||
|
||||
// Remove a CDATA wrapper when reading XML fields that intentionally contain HTML.
|
||||
function unwrapCdata(value) {
|
||||
return String(value)
|
||||
.replace(/^<!\[CDATA\[/, '')
|
||||
.replace(/\]\]>$/, '');
|
||||
}
|
||||
|
||||
266
feed/feed-ja.xml
266
feed/feed-ja.xml
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
||||
<channel>
|
||||
<title>Awesome Mac - 最近追加されたアプリ</title>
|
||||
<link>https://jaywcjlove.github.io/awesome-mac</link>
|
||||
@ -14,7 +14,13 @@
|
||||
<guid isPermaLink="false">bd7eb478d51c6ef17c18cb0274d682531af2fcb3:Atomic Chat</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 13:15:09 GMT</pubDate>
|
||||
<category>AIクライアント</category>
|
||||
<description>Category: AIクライアント<br/>App: Atomic Chat<br/>Description: ローカルLLM、クラウドモデル、MCP、OpenAI互換APIに対応したオープンソースのAIチャットクライアント。<br/>Open Source: https://github.com/AtomicBot-ai/Atomic-Chat<br/>Commit: Add Atomic Chat<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bd7eb478d51c6ef17c18cb0274d682531af2fcb3</description>
|
||||
<description>Category: AIクライアント
|
||||
App: Atomic Chat
|
||||
Description: ローカルLLM、クラウドモデル、MCP、OpenAI互換APIに対応したオープンソースのAIチャットクライアント。
|
||||
Open Source: https://github.com/AtomicBot-ai/Atomic-Chat
|
||||
Commit: Add Atomic Chat
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bd7eb478d51c6ef17c18cb0274d682531af2fcb3</description>
|
||||
<content:encoded><![CDATA[Category: AIクライアント<br/>App: Atomic Chat<br/>Description: ローカルLLM、クラウドモデル、MCP、OpenAI互換APIに対応したオープンソースのAIチャットクライアント。<br/>Open Source: https://github.com/AtomicBot-ai/Atomic-Chat<br/>Commit: Add Atomic Chat<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bd7eb478d51c6ef17c18cb0274d682531af2fcb3]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Dimly</title>
|
||||
@ -22,7 +28,13 @@
|
||||
<guid isPermaLink="false">d53a3a575237426467147d25d929bdcc5eeb1f9a:Dimly</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 08:08:46 GMT</pubDate>
|
||||
<category>ユーティリティ / 生活の質の向上</category>
|
||||
<description>Category: ユーティリティ / 生活の質の向上<br/>App: Dimly<br/>Description: 1つのメニューバーアプリから複数モニターの明るさをまとめて調整するツール。<br/>Website: https://feuerbacher.me/projects/dimly<br/>Commit: Add Dimly to the ja/ko/zh list. (#1938)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/d53a3a575237426467147d25d929bdcc5eeb1f9a</description>
|
||||
<description>Category: ユーティリティ / 生活の質の向上
|
||||
App: Dimly
|
||||
Description: 1つのメニューバーアプリから複数モニターの明るさをまとめて調整するツール。
|
||||
Website: https://feuerbacher.me/projects/dimly
|
||||
Commit: Add Dimly to the ja/ko/zh list. (#1938)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/d53a3a575237426467147d25d929bdcc5eeb1f9a</description>
|
||||
<content:encoded><![CDATA[Category: ユーティリティ / 生活の質の向上<br/>App: Dimly<br/>Description: 1つのメニューバーアプリから複数モニターの明るさをまとめて調整するツール。<br/>Website: https://feuerbacher.me/projects/dimly<br/>Commit: Add Dimly to the ja/ko/zh list. (#1938)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/d53a3a575237426467147d25d929bdcc5eeb1f9a]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>ClawdHome</title>
|
||||
@ -30,7 +42,13 @@
|
||||
<guid isPermaLink="false">29a8d9fea61d823eca4f0573f2881b38b408e559:ClawdHome</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 07:08:12 GMT</pubDate>
|
||||
<category>AIクライアント</category>
|
||||
<description>Category: AIクライアント<br/>App: ClawdHome<br/>Description: 1つのコントロールパネルで複数のOpenClawゲートウェイインスタンスを分離して管理するツール。<br/>Website: https://clawdhome.app/<br/>Commit: Add ClawdHome<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/29a8d9fea61d823eca4f0573f2881b38b408e559</description>
|
||||
<description>Category: AIクライアント
|
||||
App: ClawdHome
|
||||
Description: 1つのコントロールパネルで複数のOpenClawゲートウェイインスタンスを分離して管理するツール。
|
||||
Website: https://clawdhome.app/
|
||||
Commit: Add ClawdHome
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/29a8d9fea61d823eca4f0573f2881b38b408e559</description>
|
||||
<content:encoded><![CDATA[Category: AIクライアント<br/>App: ClawdHome<br/>Description: 1つのコントロールパネルで複数のOpenClawゲートウェイインスタンスを分離して管理するツール。<br/>Website: https://clawdhome.app/<br/>Commit: Add ClawdHome<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/29a8d9fea61d823eca4f0573f2881b38b408e559]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>DashVPN</title>
|
||||
@ -38,7 +56,13 @@
|
||||
<guid isPermaLink="false">613206a7f1c6cea5cc2b3480fb2815e9786a58b1:DashVPN</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 06:41:31 GMT</pubDate>
|
||||
<category>プロキシ・VPNツール</category>
|
||||
<description>Category: プロキシ・VPNツール<br/>App: DashVPN<br/>Description: VLESS、Shadowsocks、HTTPSサブスクリプションに対応したスマートルーティング対応プロキシクライアント。<br/>Website: https://getdashvpn.com/<br/>Commit: Add DashVPN to the ja/ko list. (#1939)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/613206a7f1c6cea5cc2b3480fb2815e9786a58b1</description>
|
||||
<description>Category: プロキシ・VPNツール
|
||||
App: DashVPN
|
||||
Description: VLESS、Shadowsocks、HTTPSサブスクリプションに対応したスマートルーティング対応プロキシクライアント。
|
||||
Website: https://getdashvpn.com/
|
||||
Commit: Add DashVPN to the ja/ko list. (#1939)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/613206a7f1c6cea5cc2b3480fb2815e9786a58b1</description>
|
||||
<content:encoded><![CDATA[Category: プロキシ・VPNツール<br/>App: DashVPN<br/>Description: VLESS、Shadowsocks、HTTPSサブスクリプションに対応したスマートルーティング対応プロキシクライアント。<br/>Website: https://getdashvpn.com/<br/>Commit: Add DashVPN to the ja/ko list. (#1939)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/613206a7f1c6cea5cc2b3480fb2815e9786a58b1]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>ClashBar</title>
|
||||
@ -46,7 +70,13 @@
|
||||
<guid isPermaLink="false">7dec9ecd64368a50a565d99a83104f00a6bdd09d:ClashBar</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 05:23:18 GMT</pubDate>
|
||||
<category>プロキシ・VPNツール</category>
|
||||
<description>Category: プロキシ・VPNツール<br/>App: ClashBar<br/>Description: mihomo搭載のメニューバープロキシクライアント。<br/>Website: https://clashbar.vercel.app/<br/>Commit: docs: add ClashBar to localized readmes<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7dec9ecd64368a50a565d99a83104f00a6bdd09d</description>
|
||||
<description>Category: プロキシ・VPNツール
|
||||
App: ClashBar
|
||||
Description: mihomo搭載のメニューバープロキシクライアント。
|
||||
Website: https://clashbar.vercel.app/
|
||||
Commit: docs: add ClashBar to localized readmes
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7dec9ecd64368a50a565d99a83104f00a6bdd09d</description>
|
||||
<content:encoded><![CDATA[Category: プロキシ・VPNツール<br/>App: ClashBar<br/>Description: mihomo搭載のメニューバープロキシクライアント。<br/>Website: https://clashbar.vercel.app/<br/>Commit: docs: add ClashBar to localized readmes<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7dec9ecd64368a50a565d99a83104f00a6bdd09d]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Repose</title>
|
||||
@ -54,7 +84,13 @@
|
||||
<guid isPermaLink="false">c53c14bea478c0c1512b71274582eaea627a7c93:Repose</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 02:17:35 GMT</pubDate>
|
||||
<category>ユーティリティ / メニューバーツール</category>
|
||||
<description>Category: ユーティリティ / メニューバーツール<br/>App: Repose<br/>Description: 休憩時間に画面を暗くし、通話中は自動で一時停止するメニューバー休憩タイマー。<br/>Open Source: https://github.com/fikrikarim/repose<br/>Commit: Add Repose to the ja/ko/zh list. (#1935)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/c53c14bea478c0c1512b71274582eaea627a7c93</description>
|
||||
<description>Category: ユーティリティ / メニューバーツール
|
||||
App: Repose
|
||||
Description: 休憩時間に画面を暗くし、通話中は自動で一時停止するメニューバー休憩タイマー。
|
||||
Open Source: https://github.com/fikrikarim/repose
|
||||
Commit: Add Repose to the ja/ko/zh list. (#1935)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/c53c14bea478c0c1512b71274582eaea627a7c93</description>
|
||||
<content:encoded><![CDATA[Category: ユーティリティ / メニューバーツール<br/>App: Repose<br/>Description: 休憩時間に画面を暗くし、通話中は自動で一時停止するメニューバー休憩タイマー。<br/>Open Source: https://github.com/fikrikarim/repose<br/>Commit: Add Repose to the ja/ko/zh list. (#1935)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/c53c14bea478c0c1512b71274582eaea627a7c93]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Flock</title>
|
||||
@ -62,7 +98,13 @@
|
||||
<guid isPermaLink="false">6a9af21ad3f24ffe55573d39c44becf64389831e:Flock</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 02:02:22 GMT</pubDate>
|
||||
<category>ターミナルアプリ</category>
|
||||
<description>Category: ターミナルアプリ<br/>App: Flock<br/>Description: 1つのワークスペースで複数のClaude Codeとシェルセッションを並列実行できるターミナルマルチプレクサ。<br/>Open Source: https://github.com/Divagation/flock<br/>Commit: Add Flock to the ja/ko/zh list. #1936<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6a9af21ad3f24ffe55573d39c44becf64389831e</description>
|
||||
<description>Category: ターミナルアプリ
|
||||
App: Flock
|
||||
Description: 1つのワークスペースで複数のClaude Codeとシェルセッションを並列実行できるターミナルマルチプレクサ。
|
||||
Open Source: https://github.com/Divagation/flock
|
||||
Commit: Add Flock to the ja/ko/zh list. #1936
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6a9af21ad3f24ffe55573d39c44becf64389831e</description>
|
||||
<content:encoded><![CDATA[Category: ターミナルアプリ<br/>App: Flock<br/>Description: 1つのワークスペースで複数のClaude Codeとシェルセッションを並列実行できるターミナルマルチプレクサ。<br/>Open Source: https://github.com/Divagation/flock<br/>Commit: Add Flock to the ja/ko/zh list. #1936<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6a9af21ad3f24ffe55573d39c44becf64389831e]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>TouchBridge</title>
|
||||
@ -70,7 +112,13 @@
|
||||
<guid isPermaLink="false">dfbe3aa4b330a229e80509250ef88b70e9b5612e:TouchBridge</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 21:15:53 GMT</pubDate>
|
||||
<category>セキュリティツール</category>
|
||||
<description>Category: セキュリティツール<br/>App: TouchBridge<br/>Description: スマホの指紋で認証できるオープンソースツール。<br/>Open Source: https://github.com/HMAKT99/UnTouchID<br/>Commit: Add TouchBridge to the ja/ko/zh lish. #1930<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/dfbe3aa4b330a229e80509250ef88b70e9b5612e</description>
|
||||
<description>Category: セキュリティツール
|
||||
App: TouchBridge
|
||||
Description: スマホの指紋で認証できるオープンソースツール。
|
||||
Open Source: https://github.com/HMAKT99/UnTouchID
|
||||
Commit: Add TouchBridge to the ja/ko/zh lish. #1930
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/dfbe3aa4b330a229e80509250ef88b70e9b5612e</description>
|
||||
<content:encoded><![CDATA[Category: セキュリティツール<br/>App: TouchBridge<br/>Description: スマホの指紋で認証できるオープンソースツール。<br/>Open Source: https://github.com/HMAKT99/UnTouchID<br/>Commit: Add TouchBridge to the ja/ko/zh lish. #1930<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/dfbe3aa4b330a229e80509250ef88b70e9b5612e]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>VSCodium</title>
|
||||
@ -78,7 +126,13 @@
|
||||
<guid isPermaLink="false">89efdda4fc72bd531bdd7dc25dd7633d00c684b7:VSCodium</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 05:46:23 GMT</pubDate>
|
||||
<category>開発ツール / IDE</category>
|
||||
<description>Category: 開発ツール / IDE<br/>App: VSCodium<br/>Description: コミュニティ主導の VS Code 向け自由オープンソースバイナリ配布版。<br/>Website: https://vscodium.com/<br/>Commit: Add VSCodium to the ja/ko/zh list. #1926<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/89efdda4fc72bd531bdd7dc25dd7633d00c684b7</description>
|
||||
<description>Category: 開発ツール / IDE
|
||||
App: VSCodium
|
||||
Description: コミュニティ主導の VS Code 向け自由オープンソースバイナリ配布版。
|
||||
Website: https://vscodium.com/
|
||||
Commit: Add VSCodium to the ja/ko/zh list. #1926
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/89efdda4fc72bd531bdd7dc25dd7633d00c684b7</description>
|
||||
<content:encoded><![CDATA[Category: 開発ツール / IDE<br/>App: VSCodium<br/>Description: コミュニティ主導の VS Code 向け自由オープンソースバイナリ配布版。<br/>Website: https://vscodium.com/<br/>Commit: Add VSCodium to the ja/ko/zh list. #1926<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/89efdda4fc72bd531bdd7dc25dd7633d00c684b7]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>OpenDictation</title>
|
||||
@ -86,7 +140,13 @@
|
||||
<guid isPermaLink="false">fc74bd6c3f22b939b3f70b345b40001648a61e64:OpenDictation</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 04:36:32 GMT</pubDate>
|
||||
<category>音声テキスト変換</category>
|
||||
<description>Category: 音声テキスト変換<br/>App: OpenDictation<br/>Description: ローカルとクラウドの音声テキスト変換に対応したオープンソースのディクテーションツール。<br/>Open Source: https://github.com/kdcokenny/OpenDictation<br/>Commit: Add OpenDictation to the ja/ko/zh list (#1927).<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/fc74bd6c3f22b939b3f70b345b40001648a61e64</description>
|
||||
<description>Category: 音声テキスト変換
|
||||
App: OpenDictation
|
||||
Description: ローカルとクラウドの音声テキスト変換に対応したオープンソースのディクテーションツール。
|
||||
Open Source: https://github.com/kdcokenny/OpenDictation
|
||||
Commit: Add OpenDictation to the ja/ko/zh list (#1927).
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/fc74bd6c3f22b939b3f70b345b40001648a61e64</description>
|
||||
<content:encoded><![CDATA[Category: 音声テキスト変換<br/>App: OpenDictation<br/>Description: ローカルとクラウドの音声テキスト変換に対応したオープンソースのディクテーションツール。<br/>Open Source: https://github.com/kdcokenny/OpenDictation<br/>Commit: Add OpenDictation to the ja/ko/zh list (#1927).<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/fc74bd6c3f22b939b3f70b345b40001648a61e64]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Nudge</title>
|
||||
@ -94,7 +154,13 @@
|
||||
<guid isPermaLink="false">5954cd8e0fc69805edc52d757b247f49e2da3229:Nudge</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 03:55:58 GMT</pubDate>
|
||||
<category>ユーティリティ / ウィンドウ管理</category>
|
||||
<description>Category: ユーティリティ / ウィンドウ管理<br/>App: Nudge<br/>Description: キーボードショートカットとドラッグジェスチャーでウィンドウを管理するツール。[![Open-Source Software][OSS Icon]](https://github.com/mikusnuz/nudge)<br/>Website: https://nudge.run<br/>Commit: Add Nudge to the ja/zh/ko list. #1928<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5954cd8e0fc69805edc52d757b247f49e2da3229</description>
|
||||
<description>Category: ユーティリティ / ウィンドウ管理
|
||||
App: Nudge
|
||||
Description: キーボードショートカットとドラッグジェスチャーでウィンドウを管理するツール。[![Open-Source Software][OSS Icon]](https://github.com/mikusnuz/nudge)
|
||||
Website: https://nudge.run
|
||||
Commit: Add Nudge to the ja/zh/ko list. #1928
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5954cd8e0fc69805edc52d757b247f49e2da3229</description>
|
||||
<content:encoded><![CDATA[Category: ユーティリティ / ウィンドウ管理<br/>App: Nudge<br/>Description: キーボードショートカットとドラッグジェスチャーでウィンドウを管理するツール。[![Open-Source Software][OSS Icon]](https://github.com/mikusnuz/nudge)<br/>Website: https://nudge.run<br/>Commit: Add Nudge to the ja/zh/ko list. #1928<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5954cd8e0fc69805edc52d757b247f49e2da3229]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>App Uninstaller</title>
|
||||
@ -102,7 +168,13 @@
|
||||
<guid isPermaLink="false">347dfed9d507966748fb5eeed5b2d9f1de02f2fe:App Uninstaller</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 14:06:15 GMT</pubDate>
|
||||
<category>ユーティリティ / クリーンアップとアンインストール</category>
|
||||
<description>Category: ユーティリティ / クリーンアップとアンインストール<br/>App: App Uninstaller<br/>Description: ドラッグ&ドロップ対応の軽量なアプリ削除ツール。<br/>Open Source: https://github.com/kamjin3086/AppUninstaller<br/>Commit: Add App Uninstaller to the ja/ko list. #1913<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/347dfed9d507966748fb5eeed5b2d9f1de02f2fe</description>
|
||||
<description>Category: ユーティリティ / クリーンアップとアンインストール
|
||||
App: App Uninstaller
|
||||
Description: ドラッグ&ドロップ対応の軽量なアプリ削除ツール。
|
||||
Open Source: https://github.com/kamjin3086/AppUninstaller
|
||||
Commit: Add App Uninstaller to the ja/ko list. #1913
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/347dfed9d507966748fb5eeed5b2d9f1de02f2fe</description>
|
||||
<content:encoded><![CDATA[Category: ユーティリティ / クリーンアップとアンインストール<br/>App: App Uninstaller<br/>Description: ドラッグ&ドロップ対応の軽量なアプリ削除ツール。<br/>Open Source: https://github.com/kamjin3086/AppUninstaller<br/>Commit: Add App Uninstaller to the ja/ko list. #1913<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/347dfed9d507966748fb5eeed5b2d9f1de02f2fe]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Claude Usage Monitor</title>
|
||||
@ -110,7 +182,13 @@
|
||||
<guid isPermaLink="false">2f669a63d29ebbe2b3933f21eac34b2082306377:Claude Usage Monitor</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 14:01:22 GMT</pubDate>
|
||||
<category>ユーティリティ / メニューバーツール</category>
|
||||
<description>Category: ユーティリティ / メニューバーツール<br/>App: Claude Usage Monitor<br/>Description: メニューバーでリアルタイムのカウンターからClaude使用量を追跡するツール。<br/>Open Source: https://github.com/theDanButuc/Claude-Usage-Monitor<br/>Commit: Add Claude Usage Monitor to the ja/ko/zh list. #1912<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/2f669a63d29ebbe2b3933f21eac34b2082306377</description>
|
||||
<description>Category: ユーティリティ / メニューバーツール
|
||||
App: Claude Usage Monitor
|
||||
Description: メニューバーでリアルタイムのカウンターからClaude使用量を追跡するツール。
|
||||
Open Source: https://github.com/theDanButuc/Claude-Usage-Monitor
|
||||
Commit: Add Claude Usage Monitor to the ja/ko/zh list. #1912
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/2f669a63d29ebbe2b3933f21eac34b2082306377</description>
|
||||
<content:encoded><![CDATA[Category: ユーティリティ / メニューバーツール<br/>App: Claude Usage Monitor<br/>Description: メニューバーでリアルタイムのカウンターからClaude使用量を追跡するツール。<br/>Open Source: https://github.com/theDanButuc/Claude-Usage-Monitor<br/>Commit: Add Claude Usage Monitor to the ja/ko/zh list. #1912<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/2f669a63d29ebbe2b3933f21eac34b2082306377]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Zipic</title>
|
||||
@ -118,7 +196,13 @@
|
||||
<guid isPermaLink="false">74d4d600677a63bef7d165241f1552d4f672df4f:Zipic</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 06:45:35 GMT</pubDate>
|
||||
<category>デザインとプロダクト / その他のツール</category>
|
||||
<description>Category: デザインとプロダクト / その他のツール<br/>App: Zipic<br/>Description: カスタムプリセット、自動化ワークフロー、ショートカットとRaycast連携を備えたバッチ画像圧縮ツール。<br/>Website: https://zipic.app/<br/>Commit: Add Zipic to Design and Product - Other Tools (#1910)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/74d4d600677a63bef7d165241f1552d4f672df4f</description>
|
||||
<description>Category: デザインとプロダクト / その他のツール
|
||||
App: Zipic
|
||||
Description: カスタムプリセット、自動化ワークフロー、ショートカットとRaycast連携を備えたバッチ画像圧縮ツール。
|
||||
Website: https://zipic.app/
|
||||
Commit: Add Zipic to Design and Product - Other Tools (#1910)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/74d4d600677a63bef7d165241f1552d4f672df4f</description>
|
||||
<content:encoded><![CDATA[Category: デザインとプロダクト / その他のツール<br/>App: Zipic<br/>Description: カスタムプリセット、自動化ワークフロー、ショートカットとRaycast連携を備えたバッチ画像圧縮ツール。<br/>Website: https://zipic.app/<br/>Commit: Add Zipic to Design and Product - Other Tools (#1910)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/74d4d600677a63bef7d165241f1552d4f672df4f]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Orchard</title>
|
||||
@ -126,7 +210,13 @@
|
||||
<guid isPermaLink="false">0d36dfc922d82a46b83664683364fbef1cfd0243:Orchard</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 06:45:11 GMT</pubDate>
|
||||
<category>AIクライアント</category>
|
||||
<description>Category: AIクライアント<br/>App: Orchard<br/>Description: AIアシスタントをカレンダー、メール、メモ、リマインダー、ミュージックなどAppleネイティブアプリと接続するMCPサーバー。<br/>Website: https://orchard.5km.tech/<br/>Commit: Add Orchard to AI Client (#1911)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0d36dfc922d82a46b83664683364fbef1cfd0243</description>
|
||||
<description>Category: AIクライアント
|
||||
App: Orchard
|
||||
Description: AIアシスタントをカレンダー、メール、メモ、リマインダー、ミュージックなどAppleネイティブアプリと接続するMCPサーバー。
|
||||
Website: https://orchard.5km.tech/
|
||||
Commit: Add Orchard to AI Client (#1911)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0d36dfc922d82a46b83664683364fbef1cfd0243</description>
|
||||
<content:encoded><![CDATA[Category: AIクライアント<br/>App: Orchard<br/>Description: AIアシスタントをカレンダー、メール、メモ、リマインダー、ミュージックなどAppleネイティブアプリと接続するMCPサーバー。<br/>Website: https://orchard.5km.tech/<br/>Commit: Add Orchard to AI Client (#1911)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0d36dfc922d82a46b83664683364fbef1cfd0243]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Azex Speech</title>
|
||||
@ -134,7 +224,13 @@
|
||||
<guid isPermaLink="false">9f528db2256e29d17fdbc0fb740200746cb3bfeb:Azex Speech</guid>
|
||||
<pubDate>Sun, 22 Mar 2026 04:15:25 GMT</pubDate>
|
||||
<category>音声テキスト変換</category>
|
||||
<description>Category: 音声テキスト変換<br/>App: Azex Speech<br/>Description: AIや暗号資産の作業で中英混在の音声入力に強いツール。<br/>Open Source: https://github.com/azex-ai/speech<br/>Commit: Add Azex Speech to the ja/ko/zh list. #1909<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9f528db2256e29d17fdbc0fb740200746cb3bfeb</description>
|
||||
<description>Category: 音声テキスト変換
|
||||
App: Azex Speech
|
||||
Description: AIや暗号資産の作業で中英混在の音声入力に強いツール。
|
||||
Open Source: https://github.com/azex-ai/speech
|
||||
Commit: Add Azex Speech to the ja/ko/zh list. #1909
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9f528db2256e29d17fdbc0fb740200746cb3bfeb</description>
|
||||
<content:encoded><![CDATA[Category: 音声テキスト変換<br/>App: Azex Speech<br/>Description: AIや暗号資産の作業で中英混在の音声入力に強いツール。<br/>Open Source: https://github.com/azex-ai/speech<br/>Commit: Add Azex Speech to the ja/ko/zh list. #1909<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9f528db2256e29d17fdbc0fb740200746cb3bfeb]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>NoxKey</title>
|
||||
@ -142,7 +238,13 @@
|
||||
<guid isPermaLink="false">f5cd3bcad0af7198b4dad407a0c096e559a4f042:NoxKey</guid>
|
||||
<pubDate>Sun, 22 Mar 2026 04:10:59 GMT</pubDate>
|
||||
<category>セキュリティツール</category>
|
||||
<description>Category: セキュリティツール<br/>App: NoxKey<br/>Description: キーチェーンとTouch IDでAPIキーやトークンを管理するツール。<br/>Open Source: https://github.com/No-Box-Dev/Noxkey<br/>Commit: Add NoxKey to the ja/ko/zh list. #1907<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f5cd3bcad0af7198b4dad407a0c096e559a4f042</description>
|
||||
<description>Category: セキュリティツール
|
||||
App: NoxKey
|
||||
Description: キーチェーンとTouch IDでAPIキーやトークンを管理するツール。
|
||||
Open Source: https://github.com/No-Box-Dev/Noxkey
|
||||
Commit: Add NoxKey to the ja/ko/zh list. #1907
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f5cd3bcad0af7198b4dad407a0c096e559a4f042</description>
|
||||
<content:encoded><![CDATA[Category: セキュリティツール<br/>App: NoxKey<br/>Description: キーチェーンとTouch IDでAPIキーやトークンを管理するツール。<br/>Open Source: https://github.com/No-Box-Dev/Noxkey<br/>Commit: Add NoxKey to the ja/ko/zh list. #1907<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f5cd3bcad0af7198b4dad407a0c096e559a4f042]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Lockpaw</title>
|
||||
@ -150,7 +252,13 @@
|
||||
<guid isPermaLink="false">e0e8f5ea3118ce622203be870d6026bd1b64d8ac:Lockpaw</guid>
|
||||
<pubDate>Sat, 21 Mar 2026 01:38:57 GMT</pubDate>
|
||||
<category>ユーティリティ / メニューバーツール</category>
|
||||
<description>Category: ユーティリティ / メニューバーツール<br/>App: Lockpaw<br/>Description: ホットキーで画面ロックを切り替えられるメニューバーツール。<br/>Website: https://getlockpaw.com<br/>Commit: Add Lockpaw to the ja/ko list #1901<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e0e8f5ea3118ce622203be870d6026bd1b64d8ac</description>
|
||||
<description>Category: ユーティリティ / メニューバーツール
|
||||
App: Lockpaw
|
||||
Description: ホットキーで画面ロックを切り替えられるメニューバーツール。
|
||||
Website: https://getlockpaw.com
|
||||
Commit: Add Lockpaw to the ja/ko list #1901
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e0e8f5ea3118ce622203be870d6026bd1b64d8ac</description>
|
||||
<content:encoded><![CDATA[Category: ユーティリティ / メニューバーツール<br/>App: Lockpaw<br/>Description: ホットキーで画面ロックを切り替えられるメニューバーツール。<br/>Website: https://getlockpaw.com<br/>Commit: Add Lockpaw to the ja/ko list #1901<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e0e8f5ea3118ce622203be870d6026bd1b64d8ac]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Redis Insight</title>
|
||||
@ -158,7 +266,13 @@
|
||||
<guid isPermaLink="false">f15cdc15655effd7aadc5db234b9597abe6baa7a:Redis Insight</guid>
|
||||
<pubDate>Sat, 21 Mar 2026 01:35:38 GMT</pubDate>
|
||||
<category>開発ツール / データベース</category>
|
||||
<description>Category: 開発ツール / データベース<br/>App: Redis Insight<br/>Description: Redisデータの閲覧、デバッグ、可視化ができる公式ツール。<br/>Website: https://redis.io/insight/<br/>Commit: Add Redis Insight fix #1899<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f15cdc15655effd7aadc5db234b9597abe6baa7a</description>
|
||||
<description>Category: 開発ツール / データベース
|
||||
App: Redis Insight
|
||||
Description: Redisデータの閲覧、デバッグ、可視化ができる公式ツール。
|
||||
Website: https://redis.io/insight/
|
||||
Commit: Add Redis Insight fix #1899
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f15cdc15655effd7aadc5db234b9597abe6baa7a</description>
|
||||
<content:encoded><![CDATA[Category: 開発ツール / データベース<br/>App: Redis Insight<br/>Description: Redisデータの閲覧、デバッグ、可視化ができる公式ツール。<br/>Website: https://redis.io/insight/<br/>Commit: Add Redis Insight fix #1899<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f15cdc15655effd7aadc5db234b9597abe6baa7a]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>DMG Maker</title>
|
||||
@ -166,7 +280,13 @@
|
||||
<guid isPermaLink="false">9a0dfca40df6df056ea648db3a05a2cdafd52510:DMG Maker</guid>
|
||||
<pubDate>Fri, 20 Mar 2026 00:45:38 GMT</pubDate>
|
||||
<category>開発ツール / ハイブリッドアプリケーション用フレームワーク</category>
|
||||
<description>Category: 開発ツール / ハイブリッドアプリケーション用フレームワーク<br/>App: DMG Maker<br/>Description: 洗練されたビジュアルとCLI対応を備えたDMG作成ツール。<br/>Open Source: https://github.com/saihgupr/DMGMaker<br/>Commit: Add DMG Maker<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9a0dfca40df6df056ea648db3a05a2cdafd52510</description>
|
||||
<description>Category: 開発ツール / ハイブリッドアプリケーション用フレームワーク
|
||||
App: DMG Maker
|
||||
Description: 洗練されたビジュアルとCLI対応を備えたDMG作成ツール。
|
||||
Open Source: https://github.com/saihgupr/DMGMaker
|
||||
Commit: Add DMG Maker
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9a0dfca40df6df056ea648db3a05a2cdafd52510</description>
|
||||
<content:encoded><![CDATA[Category: 開発ツール / ハイブリッドアプリケーション用フレームワーク<br/>App: DMG Maker<br/>Description: 洗練されたビジュアルとCLI対応を備えたDMG作成ツール。<br/>Open Source: https://github.com/saihgupr/DMGMaker<br/>Commit: Add DMG Maker<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9a0dfca40df6df056ea648db3a05a2cdafd52510]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Fazm</title>
|
||||
@ -174,7 +294,13 @@
|
||||
<guid isPermaLink="false">e9bce406b634e66ea822ba0462aa1fa8305ae89e:Fazm</guid>
|
||||
<pubDate>Wed, 18 Mar 2026 03:43:16 GMT</pubDate>
|
||||
<category>AIクライアント</category>
|
||||
<description>Category: AIクライアント<br/>App: Fazm<br/>Description: アプリ、ファイル、ワークフローを音声で操作できるオープンソースのAIエージェント。<br/>Website: https://fazm.ai<br/>Commit: Add Fazm to the ja/ko/zh list. #1894<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e9bce406b634e66ea822ba0462aa1fa8305ae89e</description>
|
||||
<description>Category: AIクライアント
|
||||
App: Fazm
|
||||
Description: アプリ、ファイル、ワークフローを音声で操作できるオープンソースのAIエージェント。
|
||||
Website: https://fazm.ai
|
||||
Commit: Add Fazm to the ja/ko/zh list. #1894
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e9bce406b634e66ea822ba0462aa1fa8305ae89e</description>
|
||||
<content:encoded><![CDATA[Category: AIクライアント<br/>App: Fazm<br/>Description: アプリ、ファイル、ワークフローを音声で操作できるオープンソースのAIエージェント。<br/>Website: https://fazm.ai<br/>Commit: Add Fazm to the ja/ko/zh list. #1894<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e9bce406b634e66ea822ba0462aa1fa8305ae89e]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Nimbalyst</title>
|
||||
@ -182,7 +308,13 @@
|
||||
<guid isPermaLink="false">3e4582d3cfc79156f438420b91899d6810f54b31:Nimbalyst</guid>
|
||||
<pubDate>Wed, 18 Mar 2026 01:40:27 GMT</pubDate>
|
||||
<category>開発ツール / IDE</category>
|
||||
<description>Category: 開発ツール / IDE<br/>App: Nimbalyst<br/>Description: AIコーディングのセッション、タスク、プロジェクトファイルを管理できるビジュアルワークスペース。<br/>Website: https://nimbalyst.com/<br/>Commit: Add Nimbalyst to the ja/ko/zh list. #1893<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3e4582d3cfc79156f438420b91899d6810f54b31</description>
|
||||
<description>Category: 開発ツール / IDE
|
||||
App: Nimbalyst
|
||||
Description: AIコーディングのセッション、タスク、プロジェクトファイルを管理できるビジュアルワークスペース。
|
||||
Website: https://nimbalyst.com/
|
||||
Commit: Add Nimbalyst to the ja/ko/zh list. #1893
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3e4582d3cfc79156f438420b91899d6810f54b31</description>
|
||||
<content:encoded><![CDATA[Category: 開発ツール / IDE<br/>App: Nimbalyst<br/>Description: AIコーディングのセッション、タスク、プロジェクトファイルを管理できるビジュアルワークスペース。<br/>Website: https://nimbalyst.com/<br/>Commit: Add Nimbalyst to the ja/ko/zh list. #1893<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3e4582d3cfc79156f438420b91899d6810f54b31]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>ScreenSage Pro</title>
|
||||
@ -190,7 +322,13 @@
|
||||
<guid isPermaLink="false">4647770f5192c2fb0f5b782d49ebc49f137707b2:ScreenSage Pro</guid>
|
||||
<pubDate>Tue, 17 Mar 2026 15:31:23 GMT</pubDate>
|
||||
<category>デザインとプロダクト / 画面録画</category>
|
||||
<description>Category: デザインとプロダクト / 画面録画<br/>App: ScreenSage Pro<br/>Description: 数分で洗練された画面録画動画を作れるツール。<br/>Website: https://screensage.pro/<br/>Commit: Add ScreenSage Pro<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/4647770f5192c2fb0f5b782d49ebc49f137707b2</description>
|
||||
<description>Category: デザインとプロダクト / 画面録画
|
||||
App: ScreenSage Pro
|
||||
Description: 数分で洗練された画面録画動画を作れるツール。
|
||||
Website: https://screensage.pro/
|
||||
Commit: Add ScreenSage Pro
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/4647770f5192c2fb0f5b782d49ebc49f137707b2</description>
|
||||
<content:encoded><![CDATA[Category: デザインとプロダクト / 画面録画<br/>App: ScreenSage Pro<br/>Description: 数分で洗練された画面録画動画を作れるツール。<br/>Website: https://screensage.pro/<br/>Commit: Add ScreenSage Pro<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/4647770f5192c2fb0f5b782d49ebc49f137707b2]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>FnKey</title>
|
||||
@ -198,7 +336,13 @@
|
||||
<guid isPermaLink="false">879641418098ced416f0d630f18b9f49382371e9:FnKey</guid>
|
||||
<pubDate>Sun, 15 Mar 2026 09:11:08 GMT</pubDate>
|
||||
<category>音声テキスト変換</category>
|
||||
<description>Category: 音声テキスト変換<br/>App: FnKey<br/>Description: Fnキーを押して話し、離すと音声が即座にテキストとして貼り付けられるリアルタイム音声入力ツール。<br/>Open Source: https://github.com/evoleinik/fnkey<br/>Commit: Add FnKey to the zh/ja/ko list. #1886<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/879641418098ced416f0d630f18b9f49382371e9</description>
|
||||
<description>Category: 音声テキスト変換
|
||||
App: FnKey
|
||||
Description: Fnキーを押して話し、離すと音声が即座にテキストとして貼り付けられるリアルタイム音声入力ツール。
|
||||
Open Source: https://github.com/evoleinik/fnkey
|
||||
Commit: Add FnKey to the zh/ja/ko list. #1886
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/879641418098ced416f0d630f18b9f49382371e9</description>
|
||||
<content:encoded><![CDATA[Category: 音声テキスト変換<br/>App: FnKey<br/>Description: Fnキーを押して話し、離すと音声が即座にテキストとして貼り付けられるリアルタイム音声入力ツール。<br/>Open Source: https://github.com/evoleinik/fnkey<br/>Commit: Add FnKey to the zh/ja/ko list. #1886<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/879641418098ced416f0d630f18b9f49382371e9]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Awal Terminal</title>
|
||||
@ -206,7 +350,13 @@
|
||||
<guid isPermaLink="false">f7669260f8c62cc280c2b17f52e4809be9e545c8:Awal Terminal</guid>
|
||||
<pubDate>Sun, 15 Mar 2026 01:49:27 GMT</pubDate>
|
||||
<category>ターミナルアプリ</category>
|
||||
<description>Category: ターミナルアプリ<br/>App: Awal Terminal<br/>Description: AIコンポーネント、複数プロバイダープロファイル、音声入力、Metalレンダリングを備えたLLMネイティブなターミナルエミュレーター。<br/>Open Source: https://github.com/AwalTerminal/Awal-terminal<br/>Commit: Add Awal Terminal to the ja/ko/zh #1884<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f7669260f8c62cc280c2b17f52e4809be9e545c8</description>
|
||||
<description>Category: ターミナルアプリ
|
||||
App: Awal Terminal
|
||||
Description: AIコンポーネント、複数プロバイダープロファイル、音声入力、Metalレンダリングを備えたLLMネイティブなターミナルエミュレーター。
|
||||
Open Source: https://github.com/AwalTerminal/Awal-terminal
|
||||
Commit: Add Awal Terminal to the ja/ko/zh #1884
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f7669260f8c62cc280c2b17f52e4809be9e545c8</description>
|
||||
<content:encoded><![CDATA[Category: ターミナルアプリ<br/>App: Awal Terminal<br/>Description: AIコンポーネント、複数プロバイダープロファイル、音声入力、Metalレンダリングを備えたLLMネイティブなターミナルエミュレーター。<br/>Open Source: https://github.com/AwalTerminal/Awal-terminal<br/>Commit: Add Awal Terminal to the ja/ko/zh #1884<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f7669260f8c62cc280c2b17f52e4809be9e545c8]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Rustcast</title>
|
||||
@ -214,7 +364,13 @@
|
||||
<guid isPermaLink="false">1d091dcc93abdea49740871d0ad87a3d9e37f836:Rustcast</guid>
|
||||
<pubDate>Fri, 13 Mar 2026 07:38:59 GMT</pubDate>
|
||||
<category>ユーティリティ / 生産性ツール</category>
|
||||
<description>Category: ユーティリティ / 生産性ツール<br/>App: Rustcast<br/>Description: モード切り替え、素早いアプリ起動、ファイル検索、クリップボード履歴管理などをまとめたワークフローツール。<br/>Website: https://rustcast.app<br/>Commit: Add Rustcast to the ja/ko/zh #1882<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/1d091dcc93abdea49740871d0ad87a3d9e37f836</description>
|
||||
<description>Category: ユーティリティ / 生産性ツール
|
||||
App: Rustcast
|
||||
Description: モード切り替え、素早いアプリ起動、ファイル検索、クリップボード履歴管理などをまとめたワークフローツール。
|
||||
Website: https://rustcast.app
|
||||
Commit: Add Rustcast to the ja/ko/zh #1882
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/1d091dcc93abdea49740871d0ad87a3d9e37f836</description>
|
||||
<content:encoded><![CDATA[Category: ユーティリティ / 生産性ツール<br/>App: Rustcast<br/>Description: モード切り替え、素早いアプリ起動、ファイル検索、クリップボード履歴管理などをまとめたワークフローツール。<br/>Website: https://rustcast.app<br/>Commit: Add Rustcast to the ja/ko/zh #1882<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/1d091dcc93abdea49740871d0ad87a3d9e37f836]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Mottie</title>
|
||||
@ -222,7 +378,13 @@
|
||||
<guid isPermaLink="false">8d88c1bb88fb13b4015a22d8d5d9b91040ee5eb6:Mottie</guid>
|
||||
<pubDate>Fri, 13 Mar 2026 02:11:45 GMT</pubDate>
|
||||
<category>デザインとプロダクト / その他のツール</category>
|
||||
<description>Category: デザインとプロダクト / その他のツール<br/>App: Mottie<br/>Description: dotLottieファイル対応のQuick Look拡張機能を備えたネイティブLottieアニメーションプレーヤー。<br/>Website: https://recouse.me/apps/mottie/<br/>Commit: Add Mottie (#1880)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/8d88c1bb88fb13b4015a22d8d5d9b91040ee5eb6</description>
|
||||
<description>Category: デザインとプロダクト / その他のツール
|
||||
App: Mottie
|
||||
Description: dotLottieファイル対応のQuick Look拡張機能を備えたネイティブLottieアニメーションプレーヤー。
|
||||
Website: https://recouse.me/apps/mottie/
|
||||
Commit: Add Mottie (#1880)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/8d88c1bb88fb13b4015a22d8d5d9b91040ee5eb6</description>
|
||||
<content:encoded><![CDATA[Category: デザインとプロダクト / その他のツール<br/>App: Mottie<br/>Description: dotLottieファイル対応のQuick Look拡張機能を備えたネイティブLottieアニメーションプレーヤー。<br/>Website: https://recouse.me/apps/mottie/<br/>Commit: Add Mottie (#1880)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/8d88c1bb88fb13b4015a22d8d5d9b91040ee5eb6]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>TokenMeter</title>
|
||||
@ -230,7 +392,13 @@
|
||||
<guid isPermaLink="false">a05da091d34ec02acb62b384c3a8fc64855e438f:TokenMeter</guid>
|
||||
<pubDate>Fri, 13 Mar 2026 01:27:46 GMT</pubDate>
|
||||
<category>ユーティリティ / メニューバーツール</category>
|
||||
<description>Category: ユーティリティ / メニューバーツール<br/>App: TokenMeter<br/>Description: メニューバーでClaude Codeの使用量、レート制限、コスト、アクティビティのヒートマップを追跡するツール。<br/>Website: https://priyans-hu.github.io/tokenmeter/<br/>Commit: Add TokenMeter to the ja/ko/zh #1881<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/a05da091d34ec02acb62b384c3a8fc64855e438f</description>
|
||||
<description>Category: ユーティリティ / メニューバーツール
|
||||
App: TokenMeter
|
||||
Description: メニューバーでClaude Codeの使用量、レート制限、コスト、アクティビティのヒートマップを追跡するツール。
|
||||
Website: https://priyans-hu.github.io/tokenmeter/
|
||||
Commit: Add TokenMeter to the ja/ko/zh #1881
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/a05da091d34ec02acb62b384c3a8fc64855e438f</description>
|
||||
<content:encoded><![CDATA[Category: ユーティリティ / メニューバーツール<br/>App: TokenMeter<br/>Description: メニューバーでClaude Codeの使用量、レート制限、コスト、アクティビティのヒートマップを追跡するツール。<br/>Website: https://priyans-hu.github.io/tokenmeter/<br/>Commit: Add TokenMeter to the ja/ko/zh #1881<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/a05da091d34ec02acb62b384c3a8fc64855e438f]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Itsyconnect</title>
|
||||
@ -238,7 +406,13 @@
|
||||
<guid isPermaLink="false">f3f68fbc1d3019f9bf2142480217a07bef5940e6:Itsyconnect</guid>
|
||||
<pubDate>Thu, 12 Mar 2026 13:49:28 GMT</pubDate>
|
||||
<category>開発ツール / 開発者ユーティリティ</category>
|
||||
<description>Category: 開発ツール / 開発者ユーティリティ<br/>App: Itsyconnect<br/>Description: メタデータ編集、TestFlight、レビュー、分析、AIローカライズをまとめて扱えるApp Store Connect管理ツール。<br/>Open Source: https://github.com/nickustinov/itsyconnect-macos<br/>Commit: Add Itsyconnect<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f3f68fbc1d3019f9bf2142480217a07bef5940e6</description>
|
||||
<description>Category: 開発ツール / 開発者ユーティリティ
|
||||
App: Itsyconnect
|
||||
Description: メタデータ編集、TestFlight、レビュー、分析、AIローカライズをまとめて扱えるApp Store Connect管理ツール。
|
||||
Open Source: https://github.com/nickustinov/itsyconnect-macos
|
||||
Commit: Add Itsyconnect
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f3f68fbc1d3019f9bf2142480217a07bef5940e6</description>
|
||||
<content:encoded><![CDATA[Category: 開発ツール / 開発者ユーティリティ<br/>App: Itsyconnect<br/>Description: メタデータ編集、TestFlight、レビュー、分析、AIローカライズをまとめて扱えるApp Store Connect管理ツール。<br/>Open Source: https://github.com/nickustinov/itsyconnect-macos<br/>Commit: Add Itsyconnect<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f3f68fbc1d3019f9bf2142480217a07bef5940e6]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Usage4Claude</title>
|
||||
@ -246,7 +420,13 @@
|
||||
<guid isPermaLink="false">ba64c2aaa974eeb7d2460c45be19e1876c3069b1:Usage4Claude</guid>
|
||||
<pubDate>Thu, 12 Mar 2026 13:43:42 GMT</pubDate>
|
||||
<category>ユーティリティ / メニューバーツール</category>
|
||||
<description>Category: ユーティリティ / メニューバーツール<br/>App: Usage4Claude<br/>Description: メニューバーでClaudeの各種使用量上限をリアルタイムに監視できるツール。<br/>Open Source: https://github.com/f-is-h/Usage4Claude<br/>Commit: Add Usage4Claude<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ba64c2aaa974eeb7d2460c45be19e1876c3069b1</description>
|
||||
<description>Category: ユーティリティ / メニューバーツール
|
||||
App: Usage4Claude
|
||||
Description: メニューバーでClaudeの各種使用量上限をリアルタイムに監視できるツール。
|
||||
Open Source: https://github.com/f-is-h/Usage4Claude
|
||||
Commit: Add Usage4Claude
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ba64c2aaa974eeb7d2460c45be19e1876c3069b1</description>
|
||||
<content:encoded><![CDATA[Category: ユーティリティ / メニューバーツール<br/>App: Usage4Claude<br/>Description: メニューバーでClaudeの各種使用量上限をリアルタイムに監視できるツール。<br/>Open Source: https://github.com/f-is-h/Usage4Claude<br/>Commit: Add Usage4Claude<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ba64c2aaa974eeb7d2460c45be19e1876c3069b1]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Petrichor</title>
|
||||
@ -254,7 +434,13 @@
|
||||
<guid isPermaLink="false">631a1115e8a8288944cab4fb9449c915ffd834cc:Petrichor</guid>
|
||||
<pubDate>Thu, 12 Mar 2026 02:44:52 GMT</pubDate>
|
||||
<category>オーディオ・ビデオツール</category>
|
||||
<description>Category: オーディオ・ビデオツール<br/>App: Petrichor<br/>Description: 多形式対応、歌詞表示、プレイリスト、キュー管理を備えたオフライン音楽プレイヤー。<br/>Open Source: https://github.com/kushalpandya/Petrichor<br/>Commit: Add Petrichor<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/631a1115e8a8288944cab4fb9449c915ffd834cc</description>
|
||||
<description>Category: オーディオ・ビデオツール
|
||||
App: Petrichor
|
||||
Description: 多形式対応、歌詞表示、プレイリスト、キュー管理を備えたオフライン音楽プレイヤー。
|
||||
Open Source: https://github.com/kushalpandya/Petrichor
|
||||
Commit: Add Petrichor
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/631a1115e8a8288944cab4fb9449c915ffd834cc</description>
|
||||
<content:encoded><![CDATA[Category: オーディオ・ビデオツール<br/>App: Petrichor<br/>Description: 多形式対応、歌詞表示、プレイリスト、キュー管理を備えたオフライン音楽プレイヤー。<br/>Open Source: https://github.com/kushalpandya/Petrichor<br/>Commit: Add Petrichor<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/631a1115e8a8288944cab4fb9449c915ffd834cc]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Apple On-Device OpenAI</title>
|
||||
@ -262,7 +448,13 @@
|
||||
<guid isPermaLink="false">0856b2377e3eccae2d3b2e6a783f6ea90c3a214a:Apple On-Device OpenAI</guid>
|
||||
<pubDate>Thu, 12 Mar 2026 02:15:30 GMT</pubDate>
|
||||
<category>AIクライアント</category>
|
||||
<description>Category: AIクライアント<br/>App: Apple On-Device OpenAI<br/>Description: AppleのオンデバイスFoundationモデルをOpenAI互換APIとして利用できるようにするアプリ。<br/>Open Source: https://github.com/gety-ai/apple-on-device-openai<br/>Commit: Add Apple On-Device OpenAI<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0856b2377e3eccae2d3b2e6a783f6ea90c3a214a</description>
|
||||
<description>Category: AIクライアント
|
||||
App: Apple On-Device OpenAI
|
||||
Description: AppleのオンデバイスFoundationモデルをOpenAI互換APIとして利用できるようにするアプリ。
|
||||
Open Source: https://github.com/gety-ai/apple-on-device-openai
|
||||
Commit: Add Apple On-Device OpenAI
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0856b2377e3eccae2d3b2e6a783f6ea90c3a214a</description>
|
||||
<content:encoded><![CDATA[Category: AIクライアント<br/>App: Apple On-Device OpenAI<br/>Description: AppleのオンデバイスFoundationモデルをOpenAI互換APIとして利用できるようにするアプリ。<br/>Open Source: https://github.com/gety-ai/apple-on-device-openai<br/>Commit: Add Apple On-Device OpenAI<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0856b2377e3eccae2d3b2e6a783f6ea90c3a214a]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Claude God</title>
|
||||
@ -270,7 +462,13 @@
|
||||
<guid isPermaLink="false">888d1f6d82d93b2fb4fb71a32dc15f82ee29e3b0:Claude God</guid>
|
||||
<pubDate>Thu, 12 Mar 2026 01:45:22 GMT</pubDate>
|
||||
<category>ユーティリティ / メニューバーツール</category>
|
||||
<description>Category: ユーティリティ / メニューバーツール<br/>App: Claude God<br/>Description: メニューバーでClaudeの使用量上限、コスト、セッション分析をリアルタイムのゲージ・タイムライン・通知で監視するツール。<br/>Website: https://claudegod.app<br/>Commit: Add Claude God<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/888d1f6d82d93b2fb4fb71a32dc15f82ee29e3b0</description>
|
||||
<description>Category: ユーティリティ / メニューバーツール
|
||||
App: Claude God
|
||||
Description: メニューバーでClaudeの使用量上限、コスト、セッション分析をリアルタイムのゲージ・タイムライン・通知で監視するツール。
|
||||
Website: https://claudegod.app
|
||||
Commit: Add Claude God
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/888d1f6d82d93b2fb4fb71a32dc15f82ee29e3b0</description>
|
||||
<content:encoded><![CDATA[Category: ユーティリティ / メニューバーツール<br/>App: Claude God<br/>Description: メニューバーでClaudeの使用量上限、コスト、セッション分析をリアルタイムのゲージ・タイムライン・通知で監視するツール。<br/>Website: https://claudegod.app<br/>Commit: Add Claude God<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/888d1f6d82d93b2fb4fb71a32dc15f82ee29e3b0]]></content:encoded>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
|
||||
266
feed/feed-ko.xml
266
feed/feed-ko.xml
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
||||
<channel>
|
||||
<title>Awesome Mac - 최근 추가된 앱</title>
|
||||
<link>https://jaywcjlove.github.io/awesome-mac</link>
|
||||
@ -14,7 +14,13 @@
|
||||
<guid isPermaLink="false">bd7eb478d51c6ef17c18cb0274d682531af2fcb3:Atomic Chat</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 13:15:09 GMT</pubDate>
|
||||
<category>AI 클라이언트</category>
|
||||
<description>Category: AI 클라이언트<br/>App: Atomic Chat<br/>Description: 로컬 LLM, 클라우드 모델, MCP, OpenAI 호환 API를 지원하는 오픈 소스 AI 채팅 클라이언트.<br/>Open Source: https://github.com/AtomicBot-ai/Atomic-Chat<br/>Commit: Add Atomic Chat<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bd7eb478d51c6ef17c18cb0274d682531af2fcb3</description>
|
||||
<description>Category: AI 클라이언트
|
||||
App: Atomic Chat
|
||||
Description: 로컬 LLM, 클라우드 모델, MCP, OpenAI 호환 API를 지원하는 오픈 소스 AI 채팅 클라이언트.
|
||||
Open Source: https://github.com/AtomicBot-ai/Atomic-Chat
|
||||
Commit: Add Atomic Chat
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bd7eb478d51c6ef17c18cb0274d682531af2fcb3</description>
|
||||
<content:encoded><![CDATA[Category: AI 클라이언트<br/>App: Atomic Chat<br/>Description: 로컬 LLM, 클라우드 모델, MCP, OpenAI 호환 API를 지원하는 오픈 소스 AI 채팅 클라이언트.<br/>Open Source: https://github.com/AtomicBot-ai/Atomic-Chat<br/>Commit: Add Atomic Chat<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bd7eb478d51c6ef17c18cb0274d682531af2fcb3]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Dimly</title>
|
||||
@ -22,7 +28,13 @@
|
||||
<guid isPermaLink="false">d53a3a575237426467147d25d929bdcc5eeb1f9a:Dimly</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 08:08:46 GMT</pubDate>
|
||||
<category>유틸리티 / 메뉴 바 도구</category>
|
||||
<description>Category: 유틸리티 / 메뉴 바 도구<br/>App: Dimly<br/>Description: 하나의 메뉴 막대 앱에서 여러 모니터의 밝기를 함께 제어하는 도구.<br/>Website: https://feuerbacher.me/projects/dimly<br/>Commit: Add Dimly to the ja/ko/zh list. (#1938)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/d53a3a575237426467147d25d929bdcc5eeb1f9a</description>
|
||||
<description>Category: 유틸리티 / 메뉴 바 도구
|
||||
App: Dimly
|
||||
Description: 하나의 메뉴 막대 앱에서 여러 모니터의 밝기를 함께 제어하는 도구.
|
||||
Website: https://feuerbacher.me/projects/dimly
|
||||
Commit: Add Dimly to the ja/ko/zh list. (#1938)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/d53a3a575237426467147d25d929bdcc5eeb1f9a</description>
|
||||
<content:encoded><![CDATA[Category: 유틸리티 / 메뉴 바 도구<br/>App: Dimly<br/>Description: 하나의 메뉴 막대 앱에서 여러 모니터의 밝기를 함께 제어하는 도구.<br/>Website: https://feuerbacher.me/projects/dimly<br/>Commit: Add Dimly to the ja/ko/zh list. (#1938)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/d53a3a575237426467147d25d929bdcc5eeb1f9a]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>ClawdHome</title>
|
||||
@ -30,7 +42,13 @@
|
||||
<guid isPermaLink="false">29a8d9fea61d823eca4f0573f2881b38b408e559:ClawdHome</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 07:08:12 GMT</pubDate>
|
||||
<category>AI 클라이언트</category>
|
||||
<description>Category: AI 클라이언트<br/>App: ClawdHome<br/>Description: 하나의 제어판에서 여러 OpenClaw 게이트웨이 인스턴스를 격리해 관리하는 도구.<br/>Website: https://clawdhome.app/<br/>Commit: Add ClawdHome<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/29a8d9fea61d823eca4f0573f2881b38b408e559</description>
|
||||
<description>Category: AI 클라이언트
|
||||
App: ClawdHome
|
||||
Description: 하나의 제어판에서 여러 OpenClaw 게이트웨이 인스턴스를 격리해 관리하는 도구.
|
||||
Website: https://clawdhome.app/
|
||||
Commit: Add ClawdHome
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/29a8d9fea61d823eca4f0573f2881b38b408e559</description>
|
||||
<content:encoded><![CDATA[Category: AI 클라이언트<br/>App: ClawdHome<br/>Description: 하나의 제어판에서 여러 OpenClaw 게이트웨이 인스턴스를 격리해 관리하는 도구.<br/>Website: https://clawdhome.app/<br/>Commit: Add ClawdHome<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/29a8d9fea61d823eca4f0573f2881b38b408e559]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>DashVPN</title>
|
||||
@ -38,7 +56,13 @@
|
||||
<guid isPermaLink="false">613206a7f1c6cea5cc2b3480fb2815e9786a58b1:DashVPN</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 06:41:31 GMT</pubDate>
|
||||
<category>프록시 및 VPN 도구</category>
|
||||
<description>Category: 프록시 및 VPN 도구<br/>App: DashVPN<br/>Description: 스마트 라우팅을 지원하는 프록시 클라이언트로 VLESS, Shadowsocks, HTTPS 구독을 지원합니다.<br/>Website: https://getdashvpn.com/<br/>Commit: Add DashVPN to the ja/ko list. (#1939)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/613206a7f1c6cea5cc2b3480fb2815e9786a58b1</description>
|
||||
<description>Category: 프록시 및 VPN 도구
|
||||
App: DashVPN
|
||||
Description: 스마트 라우팅을 지원하는 프록시 클라이언트로 VLESS, Shadowsocks, HTTPS 구독을 지원합니다.
|
||||
Website: https://getdashvpn.com/
|
||||
Commit: Add DashVPN to the ja/ko list. (#1939)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/613206a7f1c6cea5cc2b3480fb2815e9786a58b1</description>
|
||||
<content:encoded><![CDATA[Category: 프록시 및 VPN 도구<br/>App: DashVPN<br/>Description: 스마트 라우팅을 지원하는 프록시 클라이언트로 VLESS, Shadowsocks, HTTPS 구독을 지원합니다.<br/>Website: https://getdashvpn.com/<br/>Commit: Add DashVPN to the ja/ko list. (#1939)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/613206a7f1c6cea5cc2b3480fb2815e9786a58b1]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>ClashBar</title>
|
||||
@ -46,7 +70,13 @@
|
||||
<guid isPermaLink="false">7dec9ecd64368a50a565d99a83104f00a6bdd09d:ClashBar</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 05:23:18 GMT</pubDate>
|
||||
<category>프록시 및 VPN 도구</category>
|
||||
<description>Category: 프록시 및 VPN 도구<br/>App: ClashBar<br/>Description: mihomo 기반 메뉴 막대 프록시 클라이언트.<br/>Website: https://clashbar.vercel.app/<br/>Commit: docs: add ClashBar to localized readmes<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7dec9ecd64368a50a565d99a83104f00a6bdd09d</description>
|
||||
<description>Category: 프록시 및 VPN 도구
|
||||
App: ClashBar
|
||||
Description: mihomo 기반 메뉴 막대 프록시 클라이언트.
|
||||
Website: https://clashbar.vercel.app/
|
||||
Commit: docs: add ClashBar to localized readmes
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7dec9ecd64368a50a565d99a83104f00a6bdd09d</description>
|
||||
<content:encoded><![CDATA[Category: 프록시 및 VPN 도구<br/>App: ClashBar<br/>Description: mihomo 기반 메뉴 막대 프록시 클라이언트.<br/>Website: https://clashbar.vercel.app/<br/>Commit: docs: add ClashBar to localized readmes<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7dec9ecd64368a50a565d99a83104f00a6bdd09d]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Repose</title>
|
||||
@ -54,7 +84,13 @@
|
||||
<guid isPermaLink="false">c53c14bea478c0c1512b71274582eaea627a7c93:Repose</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 02:17:35 GMT</pubDate>
|
||||
<category>유틸리티 / 메뉴 바 도구</category>
|
||||
<description>Category: 유틸리티 / 메뉴 바 도구<br/>App: Repose<br/>Description: 휴식 시간이 되면 화면을 어둡게 하고 통화 중에는 자동으로 멈추는 메뉴 바 휴식 타이머.<br/>Open Source: https://github.com/fikrikarim/repose<br/>Commit: Add Repose to the ja/ko/zh list. (#1935)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/c53c14bea478c0c1512b71274582eaea627a7c93</description>
|
||||
<description>Category: 유틸리티 / 메뉴 바 도구
|
||||
App: Repose
|
||||
Description: 휴식 시간이 되면 화면을 어둡게 하고 통화 중에는 자동으로 멈추는 메뉴 바 휴식 타이머.
|
||||
Open Source: https://github.com/fikrikarim/repose
|
||||
Commit: Add Repose to the ja/ko/zh list. (#1935)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/c53c14bea478c0c1512b71274582eaea627a7c93</description>
|
||||
<content:encoded><![CDATA[Category: 유틸리티 / 메뉴 바 도구<br/>App: Repose<br/>Description: 휴식 시간이 되면 화면을 어둡게 하고 통화 중에는 자동으로 멈추는 메뉴 바 휴식 타이머.<br/>Open Source: https://github.com/fikrikarim/repose<br/>Commit: Add Repose to the ja/ko/zh list. (#1935)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/c53c14bea478c0c1512b71274582eaea627a7c93]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Flock</title>
|
||||
@ -62,7 +98,13 @@
|
||||
<guid isPermaLink="false">6a9af21ad3f24ffe55573d39c44becf64389831e:Flock</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 02:02:22 GMT</pubDate>
|
||||
<category>개발 도구 / 터미널 앱</category>
|
||||
<description>Category: 개발 도구 / 터미널 앱<br/>App: Flock<br/>Description: 하나의 작업 공간에서 여러 Claude Code와 셸 세션을 병렬로 실행하는 터미널 멀티플렉서.<br/>Open Source: https://github.com/Divagation/flock<br/>Commit: Add Flock to the ja/ko/zh list. #1936<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6a9af21ad3f24ffe55573d39c44becf64389831e</description>
|
||||
<description>Category: 개발 도구 / 터미널 앱
|
||||
App: Flock
|
||||
Description: 하나의 작업 공간에서 여러 Claude Code와 셸 세션을 병렬로 실행하는 터미널 멀티플렉서.
|
||||
Open Source: https://github.com/Divagation/flock
|
||||
Commit: Add Flock to the ja/ko/zh list. #1936
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6a9af21ad3f24ffe55573d39c44becf64389831e</description>
|
||||
<content:encoded><![CDATA[Category: 개발 도구 / 터미널 앱<br/>App: Flock<br/>Description: 하나의 작업 공간에서 여러 Claude Code와 셸 세션을 병렬로 실행하는 터미널 멀티플렉서.<br/>Open Source: https://github.com/Divagation/flock<br/>Commit: Add Flock to the ja/ko/zh list. #1936<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6a9af21ad3f24ffe55573d39c44becf64389831e]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>TouchBridge</title>
|
||||
@ -70,7 +112,13 @@
|
||||
<guid isPermaLink="false">dfbe3aa4b330a229e80509250ef88b70e9b5612e:TouchBridge</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 21:15:53 GMT</pubDate>
|
||||
<category>보안 도구</category>
|
||||
<description>Category: 보안 도구<br/>App: TouchBridge<br/>Description: 휴대폰 지문으로 인증할 수 있는 오픈 소스 도구.<br/>Open Source: https://github.com/HMAKT99/UnTouchID<br/>Commit: Add TouchBridge to the ja/ko/zh lish. #1930<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/dfbe3aa4b330a229e80509250ef88b70e9b5612e</description>
|
||||
<description>Category: 보안 도구
|
||||
App: TouchBridge
|
||||
Description: 휴대폰 지문으로 인증할 수 있는 오픈 소스 도구.
|
||||
Open Source: https://github.com/HMAKT99/UnTouchID
|
||||
Commit: Add TouchBridge to the ja/ko/zh lish. #1930
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/dfbe3aa4b330a229e80509250ef88b70e9b5612e</description>
|
||||
<content:encoded><![CDATA[Category: 보안 도구<br/>App: TouchBridge<br/>Description: 휴대폰 지문으로 인증할 수 있는 오픈 소스 도구.<br/>Open Source: https://github.com/HMAKT99/UnTouchID<br/>Commit: Add TouchBridge to the ja/ko/zh lish. #1930<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/dfbe3aa4b330a229e80509250ef88b70e9b5612e]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>OpenDictation</title>
|
||||
@ -78,7 +126,13 @@
|
||||
<guid isPermaLink="false">fc74bd6c3f22b939b3f70b345b40001648a61e64:OpenDictation</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 04:36:32 GMT</pubDate>
|
||||
<category>음성 텍스트 변환 (Voice-to-Text)</category>
|
||||
<description>Category: 음성 텍스트 변환 (Voice-to-Text)<br/>App: OpenDictation<br/>Description: 로컬 및 클라우드 음성 텍스트 변환을 지원하는 오픈 소스 받아쓰기 도구.<br/>Open Source: https://github.com/kdcokenny/OpenDictation<br/>Commit: Add OpenDictation to the ja/ko/zh list (#1927).<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/fc74bd6c3f22b939b3f70b345b40001648a61e64</description>
|
||||
<description>Category: 음성 텍스트 변환 (Voice-to-Text)
|
||||
App: OpenDictation
|
||||
Description: 로컬 및 클라우드 음성 텍스트 변환을 지원하는 오픈 소스 받아쓰기 도구.
|
||||
Open Source: https://github.com/kdcokenny/OpenDictation
|
||||
Commit: Add OpenDictation to the ja/ko/zh list (#1927).
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/fc74bd6c3f22b939b3f70b345b40001648a61e64</description>
|
||||
<content:encoded><![CDATA[Category: 음성 텍스트 변환 (Voice-to-Text)<br/>App: OpenDictation<br/>Description: 로컬 및 클라우드 음성 텍스트 변환을 지원하는 오픈 소스 받아쓰기 도구.<br/>Open Source: https://github.com/kdcokenny/OpenDictation<br/>Commit: Add OpenDictation to the ja/ko/zh list (#1927).<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/fc74bd6c3f22b939b3f70b345b40001648a61e64]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Nudge</title>
|
||||
@ -86,7 +140,13 @@
|
||||
<guid isPermaLink="false">5954cd8e0fc69805edc52d757b247f49e2da3229:Nudge</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 03:55:58 GMT</pubDate>
|
||||
<category>유틸리티 / 창 관리</category>
|
||||
<description>Category: 유틸리티 / 창 관리<br/>App: Nudge<br/>Description: 키보드 단축키와 드래그 제스처로 창을 관리하는 도구.<br/>Website: https://nudge.run<br/>Commit: Add Nudge to the ja/zh/ko list. #1928<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5954cd8e0fc69805edc52d757b247f49e2da3229</description>
|
||||
<description>Category: 유틸리티 / 창 관리
|
||||
App: Nudge
|
||||
Description: 키보드 단축키와 드래그 제스처로 창을 관리하는 도구.
|
||||
Website: https://nudge.run
|
||||
Commit: Add Nudge to the ja/zh/ko list. #1928
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5954cd8e0fc69805edc52d757b247f49e2da3229</description>
|
||||
<content:encoded><![CDATA[Category: 유틸리티 / 창 관리<br/>App: Nudge<br/>Description: 키보드 단축키와 드래그 제스처로 창을 관리하는 도구.<br/>Website: https://nudge.run<br/>Commit: Add Nudge to the ja/zh/ko list. #1928<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5954cd8e0fc69805edc52d757b247f49e2da3229]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>App Uninstaller</title>
|
||||
@ -94,7 +154,13 @@
|
||||
<guid isPermaLink="false">347dfed9d507966748fb5eeed5b2d9f1de02f2fe:App Uninstaller</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 14:06:15 GMT</pubDate>
|
||||
<category>유틸리티 / 정리 및 제거</category>
|
||||
<description>Category: 유틸리티 / 정리 및 제거<br/>App: App Uninstaller<br/>Description: 드래그 앤 드롭을 지원하는 가벼운 앱 제거 도구.<br/>Open Source: https://github.com/kamjin3086/AppUninstaller<br/>Commit: Add App Uninstaller to the ja/ko list. #1913<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/347dfed9d507966748fb5eeed5b2d9f1de02f2fe</description>
|
||||
<description>Category: 유틸리티 / 정리 및 제거
|
||||
App: App Uninstaller
|
||||
Description: 드래그 앤 드롭을 지원하는 가벼운 앱 제거 도구.
|
||||
Open Source: https://github.com/kamjin3086/AppUninstaller
|
||||
Commit: Add App Uninstaller to the ja/ko list. #1913
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/347dfed9d507966748fb5eeed5b2d9f1de02f2fe</description>
|
||||
<content:encoded><![CDATA[Category: 유틸리티 / 정리 및 제거<br/>App: App Uninstaller<br/>Description: 드래그 앤 드롭을 지원하는 가벼운 앱 제거 도구.<br/>Open Source: https://github.com/kamjin3086/AppUninstaller<br/>Commit: Add App Uninstaller to the ja/ko list. #1913<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/347dfed9d507966748fb5eeed5b2d9f1de02f2fe]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Claude Usage Monitor</title>
|
||||
@ -102,7 +168,13 @@
|
||||
<guid isPermaLink="false">2f669a63d29ebbe2b3933f21eac34b2082306377:Claude Usage Monitor</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 14:01:22 GMT</pubDate>
|
||||
<category>유틸리티 / 메뉴 바 도구</category>
|
||||
<description>Category: 유틸리티 / 메뉴 바 도구<br/>App: Claude Usage Monitor<br/>Description: 메뉴 바에서 실시간 카운터로 Claude 사용량을 추적하는 도구.<br/>Open Source: https://github.com/theDanButuc/Claude-Usage-Monitor<br/>Commit: Add Claude Usage Monitor to the ja/ko/zh list. #1912<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/2f669a63d29ebbe2b3933f21eac34b2082306377</description>
|
||||
<description>Category: 유틸리티 / 메뉴 바 도구
|
||||
App: Claude Usage Monitor
|
||||
Description: 메뉴 바에서 실시간 카운터로 Claude 사용량을 추적하는 도구.
|
||||
Open Source: https://github.com/theDanButuc/Claude-Usage-Monitor
|
||||
Commit: Add Claude Usage Monitor to the ja/ko/zh list. #1912
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/2f669a63d29ebbe2b3933f21eac34b2082306377</description>
|
||||
<content:encoded><![CDATA[Category: 유틸리티 / 메뉴 바 도구<br/>App: Claude Usage Monitor<br/>Description: 메뉴 바에서 실시간 카운터로 Claude 사용량을 추적하는 도구.<br/>Open Source: https://github.com/theDanButuc/Claude-Usage-Monitor<br/>Commit: Add Claude Usage Monitor to the ja/ko/zh list. #1912<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/2f669a63d29ebbe2b3933f21eac34b2082306377]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Zipic</title>
|
||||
@ -110,7 +182,13 @@
|
||||
<guid isPermaLink="false">74d4d600677a63bef7d165241f1552d4f672df4f:Zipic</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 06:45:35 GMT</pubDate>
|
||||
<category>디자인 및 제품 / 기타 도구</category>
|
||||
<description>Category: 디자인 및 제품 / 기타 도구<br/>App: Zipic<br/>Description: 사용자 정의 프리셋, 자동화 워크플로, Shortcuts 및 Raycast 통합을 지원하는 일괄 이미지 압축 도구.<br/>Website: https://zipic.app/<br/>Commit: Add Zipic to Design and Product - Other Tools (#1910)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/74d4d600677a63bef7d165241f1552d4f672df4f</description>
|
||||
<description>Category: 디자인 및 제품 / 기타 도구
|
||||
App: Zipic
|
||||
Description: 사용자 정의 프리셋, 자동화 워크플로, Shortcuts 및 Raycast 통합을 지원하는 일괄 이미지 압축 도구.
|
||||
Website: https://zipic.app/
|
||||
Commit: Add Zipic to Design and Product - Other Tools (#1910)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/74d4d600677a63bef7d165241f1552d4f672df4f</description>
|
||||
<content:encoded><![CDATA[Category: 디자인 및 제품 / 기타 도구<br/>App: Zipic<br/>Description: 사용자 정의 프리셋, 자동화 워크플로, Shortcuts 및 Raycast 통합을 지원하는 일괄 이미지 압축 도구.<br/>Website: https://zipic.app/<br/>Commit: Add Zipic to Design and Product - Other Tools (#1910)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/74d4d600677a63bef7d165241f1552d4f672df4f]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Orchard</title>
|
||||
@ -118,7 +196,13 @@
|
||||
<guid isPermaLink="false">0d36dfc922d82a46b83664683364fbef1cfd0243:Orchard</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 06:45:11 GMT</pubDate>
|
||||
<category>AI 클라이언트</category>
|
||||
<description>Category: AI 클라이언트<br/>App: Orchard<br/>Description: AI 어시스턴트를 캘린더, 메일, 메모, 미리알림, 음악 등 Apple 네이티브 앱과 연결하는 MCP 서버.<br/>Website: https://orchard.5km.tech/<br/>Commit: Add Orchard to AI Client (#1911)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0d36dfc922d82a46b83664683364fbef1cfd0243</description>
|
||||
<description>Category: AI 클라이언트
|
||||
App: Orchard
|
||||
Description: AI 어시스턴트를 캘린더, 메일, 메모, 미리알림, 음악 등 Apple 네이티브 앱과 연결하는 MCP 서버.
|
||||
Website: https://orchard.5km.tech/
|
||||
Commit: Add Orchard to AI Client (#1911)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0d36dfc922d82a46b83664683364fbef1cfd0243</description>
|
||||
<content:encoded><![CDATA[Category: AI 클라이언트<br/>App: Orchard<br/>Description: AI 어시스턴트를 캘린더, 메일, 메모, 미리알림, 음악 등 Apple 네이티브 앱과 연결하는 MCP 서버.<br/>Website: https://orchard.5km.tech/<br/>Commit: Add Orchard to AI Client (#1911)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0d36dfc922d82a46b83664683364fbef1cfd0243]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Azex Speech</title>
|
||||
@ -126,7 +210,13 @@
|
||||
<guid isPermaLink="false">9f528db2256e29d17fdbc0fb740200746cb3bfeb:Azex Speech</guid>
|
||||
<pubDate>Sun, 22 Mar 2026 04:15:25 GMT</pubDate>
|
||||
<category>음성 텍스트 변환 (Voice-to-Text)</category>
|
||||
<description>Category: 음성 텍스트 변환 (Voice-to-Text)<br/>App: Azex Speech<br/>Description: AI와 크립토 작업에서 중영 혼용 받아쓰기에 강한 음성 입력 도구.<br/>Open Source: https://github.com/azex-ai/speech<br/>Commit: Add Azex Speech to the ja/ko/zh list. #1909<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9f528db2256e29d17fdbc0fb740200746cb3bfeb</description>
|
||||
<description>Category: 음성 텍스트 변환 (Voice-to-Text)
|
||||
App: Azex Speech
|
||||
Description: AI와 크립토 작업에서 중영 혼용 받아쓰기에 강한 음성 입력 도구.
|
||||
Open Source: https://github.com/azex-ai/speech
|
||||
Commit: Add Azex Speech to the ja/ko/zh list. #1909
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9f528db2256e29d17fdbc0fb740200746cb3bfeb</description>
|
||||
<content:encoded><![CDATA[Category: 음성 텍스트 변환 (Voice-to-Text)<br/>App: Azex Speech<br/>Description: AI와 크립토 작업에서 중영 혼용 받아쓰기에 강한 음성 입력 도구.<br/>Open Source: https://github.com/azex-ai/speech<br/>Commit: Add Azex Speech to the ja/ko/zh list. #1909<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9f528db2256e29d17fdbc0fb740200746cb3bfeb]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>NoxKey</title>
|
||||
@ -134,7 +224,13 @@
|
||||
<guid isPermaLink="false">f5cd3bcad0af7198b4dad407a0c096e559a4f042:NoxKey</guid>
|
||||
<pubDate>Sun, 22 Mar 2026 04:10:59 GMT</pubDate>
|
||||
<category>보안 도구</category>
|
||||
<description>Category: 보안 도구<br/>App: NoxKey<br/>Description: 키체인과 Touch ID로 API 키와 토큰을 관리하는 도구.<br/>Open Source: https://github.com/No-Box-Dev/Noxkey<br/>Commit: Add NoxKey to the ja/ko/zh list. #1907<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f5cd3bcad0af7198b4dad407a0c096e559a4f042</description>
|
||||
<description>Category: 보안 도구
|
||||
App: NoxKey
|
||||
Description: 키체인과 Touch ID로 API 키와 토큰을 관리하는 도구.
|
||||
Open Source: https://github.com/No-Box-Dev/Noxkey
|
||||
Commit: Add NoxKey to the ja/ko/zh list. #1907
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f5cd3bcad0af7198b4dad407a0c096e559a4f042</description>
|
||||
<content:encoded><![CDATA[Category: 보안 도구<br/>App: NoxKey<br/>Description: 키체인과 Touch ID로 API 키와 토큰을 관리하는 도구.<br/>Open Source: https://github.com/No-Box-Dev/Noxkey<br/>Commit: Add NoxKey to the ja/ko/zh list. #1907<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f5cd3bcad0af7198b4dad407a0c096e559a4f042]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Lockpaw</title>
|
||||
@ -142,7 +238,13 @@
|
||||
<guid isPermaLink="false">e0e8f5ea3118ce622203be870d6026bd1b64d8ac:Lockpaw</guid>
|
||||
<pubDate>Sat, 21 Mar 2026 01:38:57 GMT</pubDate>
|
||||
<category>유틸리티 / 메뉴 바 도구</category>
|
||||
<description>Category: 유틸리티 / 메뉴 바 도구<br/>App: Lockpaw<br/>Description: 단축키로 화면 잠금을 잠그고 해제할 수 있는 메뉴 바 도구.<br/>Website: https://getlockpaw.com<br/>Commit: Add Lockpaw to the ja/ko list #1901<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e0e8f5ea3118ce622203be870d6026bd1b64d8ac</description>
|
||||
<description>Category: 유틸리티 / 메뉴 바 도구
|
||||
App: Lockpaw
|
||||
Description: 단축키로 화면 잠금을 잠그고 해제할 수 있는 메뉴 바 도구.
|
||||
Website: https://getlockpaw.com
|
||||
Commit: Add Lockpaw to the ja/ko list #1901
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e0e8f5ea3118ce622203be870d6026bd1b64d8ac</description>
|
||||
<content:encoded><![CDATA[Category: 유틸리티 / 메뉴 바 도구<br/>App: Lockpaw<br/>Description: 단축키로 화면 잠금을 잠그고 해제할 수 있는 메뉴 바 도구.<br/>Website: https://getlockpaw.com<br/>Commit: Add Lockpaw to the ja/ko list #1901<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e0e8f5ea3118ce622203be870d6026bd1b64d8ac]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Redis Insight</title>
|
||||
@ -150,7 +252,13 @@
|
||||
<guid isPermaLink="false">f15cdc15655effd7aadc5db234b9597abe6baa7a:Redis Insight</guid>
|
||||
<pubDate>Sat, 21 Mar 2026 01:35:38 GMT</pubDate>
|
||||
<category>개발 도구 / 데이터베이스</category>
|
||||
<description>Category: 개발 도구 / 데이터베이스<br/>App: Redis Insight<br/>Description: Redis 데이터를 탐색하고 디버깅하며 시각화할 수 있는 공식 도구.<br/>Website: https://redis.io/insight/<br/>Commit: Add Redis Insight fix #1899<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f15cdc15655effd7aadc5db234b9597abe6baa7a</description>
|
||||
<description>Category: 개발 도구 / 데이터베이스
|
||||
App: Redis Insight
|
||||
Description: Redis 데이터를 탐색하고 디버깅하며 시각화할 수 있는 공식 도구.
|
||||
Website: https://redis.io/insight/
|
||||
Commit: Add Redis Insight fix #1899
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f15cdc15655effd7aadc5db234b9597abe6baa7a</description>
|
||||
<content:encoded><![CDATA[Category: 개발 도구 / 데이터베이스<br/>App: Redis Insight<br/>Description: Redis 데이터를 탐색하고 디버깅하며 시각화할 수 있는 공식 도구.<br/>Website: https://redis.io/insight/<br/>Commit: Add Redis Insight fix #1899<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f15cdc15655effd7aadc5db234b9597abe6baa7a]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>DMG Maker</title>
|
||||
@ -158,7 +266,13 @@
|
||||
<guid isPermaLink="false">9a0dfca40df6df056ea648db3a05a2cdafd52510:DMG Maker</guid>
|
||||
<pubDate>Fri, 20 Mar 2026 00:45:38 GMT</pubDate>
|
||||
<category>개발 도구 / 하이브리드 애플리케이션 프레임워크</category>
|
||||
<description>Category: 개발 도구 / 하이브리드 애플리케이션 프레임워크<br/>App: DMG Maker<br/>Description: 세련된 시각 효과와 CLI 지원을 갖춘 DMG 제작 도구.<br/>Open Source: https://github.com/saihgupr/DMGMaker<br/>Commit: Add DMG Maker<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9a0dfca40df6df056ea648db3a05a2cdafd52510</description>
|
||||
<description>Category: 개발 도구 / 하이브리드 애플리케이션 프레임워크
|
||||
App: DMG Maker
|
||||
Description: 세련된 시각 효과와 CLI 지원을 갖춘 DMG 제작 도구.
|
||||
Open Source: https://github.com/saihgupr/DMGMaker
|
||||
Commit: Add DMG Maker
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9a0dfca40df6df056ea648db3a05a2cdafd52510</description>
|
||||
<content:encoded><![CDATA[Category: 개발 도구 / 하이브리드 애플리케이션 프레임워크<br/>App: DMG Maker<br/>Description: 세련된 시각 효과와 CLI 지원을 갖춘 DMG 제작 도구.<br/>Open Source: https://github.com/saihgupr/DMGMaker<br/>Commit: Add DMG Maker<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9a0dfca40df6df056ea648db3a05a2cdafd52510]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Fazm</title>
|
||||
@ -166,7 +280,13 @@
|
||||
<guid isPermaLink="false">e9bce406b634e66ea822ba0462aa1fa8305ae89e:Fazm</guid>
|
||||
<pubDate>Wed, 18 Mar 2026 03:43:16 GMT</pubDate>
|
||||
<category>AI 클라이언트</category>
|
||||
<description>Category: AI 클라이언트<br/>App: Fazm<br/>Description: 앱, 파일, 워크플로를 음성으로 제어할 수 있는 오픈 소스 AI 에이전트.<br/>Website: https://fazm.ai<br/>Commit: Add Fazm to the ja/ko/zh list. #1894<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e9bce406b634e66ea822ba0462aa1fa8305ae89e</description>
|
||||
<description>Category: AI 클라이언트
|
||||
App: Fazm
|
||||
Description: 앱, 파일, 워크플로를 음성으로 제어할 수 있는 오픈 소스 AI 에이전트.
|
||||
Website: https://fazm.ai
|
||||
Commit: Add Fazm to the ja/ko/zh list. #1894
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e9bce406b634e66ea822ba0462aa1fa8305ae89e</description>
|
||||
<content:encoded><![CDATA[Category: AI 클라이언트<br/>App: Fazm<br/>Description: 앱, 파일, 워크플로를 음성으로 제어할 수 있는 오픈 소스 AI 에이전트.<br/>Website: https://fazm.ai<br/>Commit: Add Fazm to the ja/ko/zh list. #1894<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e9bce406b634e66ea822ba0462aa1fa8305ae89e]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Nimbalyst</title>
|
||||
@ -174,7 +294,13 @@
|
||||
<guid isPermaLink="false">3e4582d3cfc79156f438420b91899d6810f54b31:Nimbalyst</guid>
|
||||
<pubDate>Wed, 18 Mar 2026 01:40:27 GMT</pubDate>
|
||||
<category>개발 도구 / IDE / 코드 편집기</category>
|
||||
<description>Category: 개발 도구 / IDE / 코드 편집기<br/>App: Nimbalyst<br/>Description: AI 코딩 세션, 작업, 프로젝트 파일을 관리하는 시각적 워크스페이스.<br/>Website: https://nimbalyst.com/<br/>Commit: Add Nimbalyst to the ja/ko/zh list. #1893<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3e4582d3cfc79156f438420b91899d6810f54b31</description>
|
||||
<description>Category: 개발 도구 / IDE / 코드 편집기
|
||||
App: Nimbalyst
|
||||
Description: AI 코딩 세션, 작업, 프로젝트 파일을 관리하는 시각적 워크스페이스.
|
||||
Website: https://nimbalyst.com/
|
||||
Commit: Add Nimbalyst to the ja/ko/zh list. #1893
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3e4582d3cfc79156f438420b91899d6810f54b31</description>
|
||||
<content:encoded><![CDATA[Category: 개발 도구 / IDE / 코드 편집기<br/>App: Nimbalyst<br/>Description: AI 코딩 세션, 작업, 프로젝트 파일을 관리하는 시각적 워크스페이스.<br/>Website: https://nimbalyst.com/<br/>Commit: Add Nimbalyst to the ja/ko/zh list. #1893<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3e4582d3cfc79156f438420b91899d6810f54b31]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>ScreenSage Pro</title>
|
||||
@ -182,7 +308,13 @@
|
||||
<guid isPermaLink="false">4647770f5192c2fb0f5b782d49ebc49f137707b2:ScreenSage Pro</guid>
|
||||
<pubDate>Tue, 17 Mar 2026 15:31:23 GMT</pubDate>
|
||||
<category>디자인 및 제품 / 화면 녹화</category>
|
||||
<description>Category: 디자인 및 제품 / 화면 녹화<br/>App: ScreenSage Pro<br/>Description: 몇 분 만에 완성도 높은 화면 녹화 영상을 만드는 도구입니다.<br/>Website: https://screensage.pro/<br/>Commit: Add ScreenSage Pro<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/4647770f5192c2fb0f5b782d49ebc49f137707b2</description>
|
||||
<description>Category: 디자인 및 제품 / 화면 녹화
|
||||
App: ScreenSage Pro
|
||||
Description: 몇 분 만에 완성도 높은 화면 녹화 영상을 만드는 도구입니다.
|
||||
Website: https://screensage.pro/
|
||||
Commit: Add ScreenSage Pro
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/4647770f5192c2fb0f5b782d49ebc49f137707b2</description>
|
||||
<content:encoded><![CDATA[Category: 디자인 및 제품 / 화면 녹화<br/>App: ScreenSage Pro<br/>Description: 몇 분 만에 완성도 높은 화면 녹화 영상을 만드는 도구입니다.<br/>Website: https://screensage.pro/<br/>Commit: Add ScreenSage Pro<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/4647770f5192c2fb0f5b782d49ebc49f137707b2]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>FnKey</title>
|
||||
@ -190,7 +322,13 @@
|
||||
<guid isPermaLink="false">879641418098ced416f0d630f18b9f49382371e9:FnKey</guid>
|
||||
<pubDate>Sun, 15 Mar 2026 09:11:08 GMT</pubDate>
|
||||
<category>음성 텍스트 변환 (Voice-to-Text)</category>
|
||||
<description>Category: 음성 텍스트 변환 (Voice-to-Text)<br/>App: FnKey<br/>Description: Fn 키를 누른 채 말하고 떼면 음성이 즉시 텍스트로 붙여넣어지는 실시간 음성 입력 도구.<br/>Open Source: https://github.com/evoleinik/fnkey<br/>Commit: Add FnKey to the zh/ja/ko list. #1886<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/879641418098ced416f0d630f18b9f49382371e9</description>
|
||||
<description>Category: 음성 텍스트 변환 (Voice-to-Text)
|
||||
App: FnKey
|
||||
Description: Fn 키를 누른 채 말하고 떼면 음성이 즉시 텍스트로 붙여넣어지는 실시간 음성 입력 도구.
|
||||
Open Source: https://github.com/evoleinik/fnkey
|
||||
Commit: Add FnKey to the zh/ja/ko list. #1886
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/879641418098ced416f0d630f18b9f49382371e9</description>
|
||||
<content:encoded><![CDATA[Category: 음성 텍스트 변환 (Voice-to-Text)<br/>App: FnKey<br/>Description: Fn 키를 누른 채 말하고 떼면 음성이 즉시 텍스트로 붙여넣어지는 실시간 음성 입력 도구.<br/>Open Source: https://github.com/evoleinik/fnkey<br/>Commit: Add FnKey to the zh/ja/ko list. #1886<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/879641418098ced416f0d630f18b9f49382371e9]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Awal Terminal</title>
|
||||
@ -198,7 +336,13 @@
|
||||
<guid isPermaLink="false">f7669260f8c62cc280c2b17f52e4809be9e545c8:Awal Terminal</guid>
|
||||
<pubDate>Sun, 15 Mar 2026 01:49:27 GMT</pubDate>
|
||||
<category>개발 도구 / 터미널 앱</category>
|
||||
<description>Category: 개발 도구 / 터미널 앱<br/>App: Awal Terminal<br/>Description: AI 구성 요소, 다중 제공자 프로필, 음성 입력, Metal 렌더링을 갖춘 LLM 네이티브 터미널 에뮬레이터.<br/>Open Source: https://github.com/AwalTerminal/Awal-terminal<br/>Commit: Add Awal Terminal to the ja/ko/zh #1884<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f7669260f8c62cc280c2b17f52e4809be9e545c8</description>
|
||||
<description>Category: 개발 도구 / 터미널 앱
|
||||
App: Awal Terminal
|
||||
Description: AI 구성 요소, 다중 제공자 프로필, 음성 입력, Metal 렌더링을 갖춘 LLM 네이티브 터미널 에뮬레이터.
|
||||
Open Source: https://github.com/AwalTerminal/Awal-terminal
|
||||
Commit: Add Awal Terminal to the ja/ko/zh #1884
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f7669260f8c62cc280c2b17f52e4809be9e545c8</description>
|
||||
<content:encoded><![CDATA[Category: 개발 도구 / 터미널 앱<br/>App: Awal Terminal<br/>Description: AI 구성 요소, 다중 제공자 프로필, 음성 입력, Metal 렌더링을 갖춘 LLM 네이티브 터미널 에뮬레이터.<br/>Open Source: https://github.com/AwalTerminal/Awal-terminal<br/>Commit: Add Awal Terminal to the ja/ko/zh #1884<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f7669260f8c62cc280c2b17f52e4809be9e545c8]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Rustcast</title>
|
||||
@ -206,7 +350,13 @@
|
||||
<guid isPermaLink="false">1d091dcc93abdea49740871d0ad87a3d9e37f836:Rustcast</guid>
|
||||
<pubDate>Fri, 13 Mar 2026 07:38:59 GMT</pubDate>
|
||||
<category>유틸리티 / 생산성</category>
|
||||
<description>Category: 유틸리티 / 생산성<br/>App: Rustcast<br/>Description: 모드 전환, 빠른 앱 실행, 파일 검색, 클립보드 기록 등을 한곳에서 다루는 워크플로 도구.<br/>Website: https://rustcast.app<br/>Commit: Add Rustcast to the ja/ko/zh #1882<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/1d091dcc93abdea49740871d0ad87a3d9e37f836</description>
|
||||
<description>Category: 유틸리티 / 생산성
|
||||
App: Rustcast
|
||||
Description: 모드 전환, 빠른 앱 실행, 파일 검색, 클립보드 기록 등을 한곳에서 다루는 워크플로 도구.
|
||||
Website: https://rustcast.app
|
||||
Commit: Add Rustcast to the ja/ko/zh #1882
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/1d091dcc93abdea49740871d0ad87a3d9e37f836</description>
|
||||
<content:encoded><![CDATA[Category: 유틸리티 / 생산성<br/>App: Rustcast<br/>Description: 모드 전환, 빠른 앱 실행, 파일 검색, 클립보드 기록 등을 한곳에서 다루는 워크플로 도구.<br/>Website: https://rustcast.app<br/>Commit: Add Rustcast to the ja/ko/zh #1882<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/1d091dcc93abdea49740871d0ad87a3d9e37f836]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Mottie</title>
|
||||
@ -214,7 +364,13 @@
|
||||
<guid isPermaLink="false">8d88c1bb88fb13b4015a22d8d5d9b91040ee5eb6:Mottie</guid>
|
||||
<pubDate>Fri, 13 Mar 2026 02:11:45 GMT</pubDate>
|
||||
<category>디자인 및 제품 / 기타 도구</category>
|
||||
<description>Category: 디자인 및 제품 / 기타 도구<br/>App: Mottie<br/>Description: dotLottie 파일용 Quick Look 확장 기능을 갖춘 네이티브 Lottie 애니메이션 플레이어.<br/>Website: https://recouse.me/apps/mottie/<br/>Commit: Add Mottie (#1880)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/8d88c1bb88fb13b4015a22d8d5d9b91040ee5eb6</description>
|
||||
<description>Category: 디자인 및 제품 / 기타 도구
|
||||
App: Mottie
|
||||
Description: dotLottie 파일용 Quick Look 확장 기능을 갖춘 네이티브 Lottie 애니메이션 플레이어.
|
||||
Website: https://recouse.me/apps/mottie/
|
||||
Commit: Add Mottie (#1880)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/8d88c1bb88fb13b4015a22d8d5d9b91040ee5eb6</description>
|
||||
<content:encoded><![CDATA[Category: 디자인 및 제품 / 기타 도구<br/>App: Mottie<br/>Description: dotLottie 파일용 Quick Look 확장 기능을 갖춘 네이티브 Lottie 애니메이션 플레이어.<br/>Website: https://recouse.me/apps/mottie/<br/>Commit: Add Mottie (#1880)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/8d88c1bb88fb13b4015a22d8d5d9b91040ee5eb6]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>TokenMeter</title>
|
||||
@ -222,7 +378,13 @@
|
||||
<guid isPermaLink="false">a05da091d34ec02acb62b384c3a8fc64855e438f:TokenMeter</guid>
|
||||
<pubDate>Fri, 13 Mar 2026 01:27:46 GMT</pubDate>
|
||||
<category>유틸리티 / 메뉴 바 도구</category>
|
||||
<description>Category: 유틸리티 / 메뉴 바 도구<br/>App: TokenMeter<br/>Description: 메뉴 바에서 Claude Code 사용량, 속도 제한, 비용, 활동 히트맵을 추적하는 도구.<br/>Website: https://priyans-hu.github.io/tokenmeter/<br/>Commit: Add TokenMeter to the ja/ko/zh #1881<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/a05da091d34ec02acb62b384c3a8fc64855e438f</description>
|
||||
<description>Category: 유틸리티 / 메뉴 바 도구
|
||||
App: TokenMeter
|
||||
Description: 메뉴 바에서 Claude Code 사용량, 속도 제한, 비용, 활동 히트맵을 추적하는 도구.
|
||||
Website: https://priyans-hu.github.io/tokenmeter/
|
||||
Commit: Add TokenMeter to the ja/ko/zh #1881
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/a05da091d34ec02acb62b384c3a8fc64855e438f</description>
|
||||
<content:encoded><![CDATA[Category: 유틸리티 / 메뉴 바 도구<br/>App: TokenMeter<br/>Description: 메뉴 바에서 Claude Code 사용량, 속도 제한, 비용, 활동 히트맵을 추적하는 도구.<br/>Website: https://priyans-hu.github.io/tokenmeter/<br/>Commit: Add TokenMeter to the ja/ko/zh #1881<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/a05da091d34ec02acb62b384c3a8fc64855e438f]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Itsyconnect</title>
|
||||
@ -230,7 +392,13 @@
|
||||
<guid isPermaLink="false">f3f68fbc1d3019f9bf2142480217a07bef5940e6:Itsyconnect</guid>
|
||||
<pubDate>Thu, 12 Mar 2026 13:49:28 GMT</pubDate>
|
||||
<category>개발 도구 / 개발자 유틸리티</category>
|
||||
<description>Category: 개발 도구 / 개발자 유틸리티<br/>App: Itsyconnect<br/>Description: 메타데이터 편집, TestFlight, 리뷰, 분석, AI 현지화를 한곳에서 처리하는 App Store Connect 관리 도구.<br/>Open Source: https://github.com/nickustinov/itsyconnect-macos<br/>Commit: Add Itsyconnect<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f3f68fbc1d3019f9bf2142480217a07bef5940e6</description>
|
||||
<description>Category: 개발 도구 / 개발자 유틸리티
|
||||
App: Itsyconnect
|
||||
Description: 메타데이터 편집, TestFlight, 리뷰, 분석, AI 현지화를 한곳에서 처리하는 App Store Connect 관리 도구.
|
||||
Open Source: https://github.com/nickustinov/itsyconnect-macos
|
||||
Commit: Add Itsyconnect
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f3f68fbc1d3019f9bf2142480217a07bef5940e6</description>
|
||||
<content:encoded><![CDATA[Category: 개발 도구 / 개발자 유틸리티<br/>App: Itsyconnect<br/>Description: 메타데이터 편집, TestFlight, 리뷰, 분석, AI 현지화를 한곳에서 처리하는 App Store Connect 관리 도구.<br/>Open Source: https://github.com/nickustinov/itsyconnect-macos<br/>Commit: Add Itsyconnect<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f3f68fbc1d3019f9bf2142480217a07bef5940e6]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Usage4Claude</title>
|
||||
@ -238,7 +406,13 @@
|
||||
<guid isPermaLink="false">ba64c2aaa974eeb7d2460c45be19e1876c3069b1:Usage4Claude</guid>
|
||||
<pubDate>Thu, 12 Mar 2026 13:43:42 GMT</pubDate>
|
||||
<category>유틸리티 / 메뉴 바 도구</category>
|
||||
<description>Category: 유틸리티 / 메뉴 바 도구<br/>App: Usage4Claude<br/>Description: 메뉴 바에서 Claude의 다양한 사용량 한도를 실시간으로 모니터링하는 도구.<br/>Open Source: https://github.com/f-is-h/Usage4Claude<br/>Commit: Add Usage4Claude<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ba64c2aaa974eeb7d2460c45be19e1876c3069b1</description>
|
||||
<description>Category: 유틸리티 / 메뉴 바 도구
|
||||
App: Usage4Claude
|
||||
Description: 메뉴 바에서 Claude의 다양한 사용량 한도를 실시간으로 모니터링하는 도구.
|
||||
Open Source: https://github.com/f-is-h/Usage4Claude
|
||||
Commit: Add Usage4Claude
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ba64c2aaa974eeb7d2460c45be19e1876c3069b1</description>
|
||||
<content:encoded><![CDATA[Category: 유틸리티 / 메뉴 바 도구<br/>App: Usage4Claude<br/>Description: 메뉴 바에서 Claude의 다양한 사용량 한도를 실시간으로 모니터링하는 도구.<br/>Open Source: https://github.com/f-is-h/Usage4Claude<br/>Commit: Add Usage4Claude<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ba64c2aaa974eeb7d2460c45be19e1876c3069b1]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Petrichor</title>
|
||||
@ -246,7 +420,13 @@
|
||||
<guid isPermaLink="false">631a1115e8a8288944cab4fb9449c915ffd834cc:Petrichor</guid>
|
||||
<pubDate>Thu, 12 Mar 2026 02:44:52 GMT</pubDate>
|
||||
<category>오디오 및 비디오 도구</category>
|
||||
<description>Category: 오디오 및 비디오 도구<br/>App: Petrichor<br/>Description: 다양한 포맷, 가사, 재생목록, 큐 관리를 지원하는 오프라인 음악 플레이어.<br/>Open Source: https://github.com/kushalpandya/Petrichor<br/>Commit: Add Petrichor<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/631a1115e8a8288944cab4fb9449c915ffd834cc</description>
|
||||
<description>Category: 오디오 및 비디오 도구
|
||||
App: Petrichor
|
||||
Description: 다양한 포맷, 가사, 재생목록, 큐 관리를 지원하는 오프라인 음악 플레이어.
|
||||
Open Source: https://github.com/kushalpandya/Petrichor
|
||||
Commit: Add Petrichor
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/631a1115e8a8288944cab4fb9449c915ffd834cc</description>
|
||||
<content:encoded><![CDATA[Category: 오디오 및 비디오 도구<br/>App: Petrichor<br/>Description: 다양한 포맷, 가사, 재생목록, 큐 관리를 지원하는 오프라인 음악 플레이어.<br/>Open Source: https://github.com/kushalpandya/Petrichor<br/>Commit: Add Petrichor<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/631a1115e8a8288944cab4fb9449c915ffd834cc]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Apple On-Device OpenAI</title>
|
||||
@ -254,7 +434,13 @@
|
||||
<guid isPermaLink="false">0856b2377e3eccae2d3b2e6a783f6ea90c3a214a:Apple On-Device OpenAI</guid>
|
||||
<pubDate>Thu, 12 Mar 2026 02:15:30 GMT</pubDate>
|
||||
<category>AI 클라이언트</category>
|
||||
<description>Category: AI 클라이언트<br/>App: Apple On-Device OpenAI<br/>Description: Apple 온디바이스 Foundation 모델을 OpenAI 호환 API로 제공하는 애플리케이션.<br/>Open Source: https://github.com/gety-ai/apple-on-device-openai<br/>Commit: Add Apple On-Device OpenAI<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0856b2377e3eccae2d3b2e6a783f6ea90c3a214a</description>
|
||||
<description>Category: AI 클라이언트
|
||||
App: Apple On-Device OpenAI
|
||||
Description: Apple 온디바이스 Foundation 모델을 OpenAI 호환 API로 제공하는 애플리케이션.
|
||||
Open Source: https://github.com/gety-ai/apple-on-device-openai
|
||||
Commit: Add Apple On-Device OpenAI
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0856b2377e3eccae2d3b2e6a783f6ea90c3a214a</description>
|
||||
<content:encoded><![CDATA[Category: AI 클라이언트<br/>App: Apple On-Device OpenAI<br/>Description: Apple 온디바이스 Foundation 모델을 OpenAI 호환 API로 제공하는 애플리케이션.<br/>Open Source: https://github.com/gety-ai/apple-on-device-openai<br/>Commit: Add Apple On-Device OpenAI<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0856b2377e3eccae2d3b2e6a783f6ea90c3a214a]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Claude God</title>
|
||||
@ -262,7 +448,13 @@
|
||||
<guid isPermaLink="false">888d1f6d82d93b2fb4fb71a32dc15f82ee29e3b0:Claude God</guid>
|
||||
<pubDate>Thu, 12 Mar 2026 01:45:22 GMT</pubDate>
|
||||
<category>유틸리티 / 메뉴 바 도구</category>
|
||||
<description>Category: 유틸리티 / 메뉴 바 도구<br/>App: Claude God<br/>Description: 메뉴 바에서 Claude 사용량 한도, 비용, 세션 분석을 실시간 게이지·타임라인·알림으로 모니터링하는 도구.<br/>Website: https://claudegod.app<br/>Commit: Add Claude God<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/888d1f6d82d93b2fb4fb71a32dc15f82ee29e3b0</description>
|
||||
<description>Category: 유틸리티 / 메뉴 바 도구
|
||||
App: Claude God
|
||||
Description: 메뉴 바에서 Claude 사용량 한도, 비용, 세션 분석을 실시간 게이지·타임라인·알림으로 모니터링하는 도구.
|
||||
Website: https://claudegod.app
|
||||
Commit: Add Claude God
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/888d1f6d82d93b2fb4fb71a32dc15f82ee29e3b0</description>
|
||||
<content:encoded><![CDATA[Category: 유틸리티 / 메뉴 바 도구<br/>App: Claude God<br/>Description: 메뉴 바에서 Claude 사용량 한도, 비용, 세션 분석을 실시간 게이지·타임라인·알림으로 모니터링하는 도구.<br/>Website: https://claudegod.app<br/>Commit: Add Claude God<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/888d1f6d82d93b2fb4fb71a32dc15f82ee29e3b0]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>TablePro</title>
|
||||
@ -270,7 +462,13 @@
|
||||
<guid isPermaLink="false">ca8cf30db1f3ed156f08969accef62df3026be26:TablePro</guid>
|
||||
<pubDate>Wed, 11 Mar 2026 04:21:40 GMT</pubDate>
|
||||
<category>개발 도구 / 데이터베이스</category>
|
||||
<description>Category: 개발 도구 / 데이터베이스<br/>App: TablePro<br/>Description: 주요 SQL/NoSQL 엔진 연결과 AI 지원 SQL 편집을 제공하는 빠른 데이터베이스 클라이언트.<br/>Open Source: https://github.com/datlechin/TablePro<br/>Commit: Add TablePro<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ca8cf30db1f3ed156f08969accef62df3026be26</description>
|
||||
<description>Category: 개발 도구 / 데이터베이스
|
||||
App: TablePro
|
||||
Description: 주요 SQL/NoSQL 엔진 연결과 AI 지원 SQL 편집을 제공하는 빠른 데이터베이스 클라이언트.
|
||||
Open Source: https://github.com/datlechin/TablePro
|
||||
Commit: Add TablePro
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ca8cf30db1f3ed156f08969accef62df3026be26</description>
|
||||
<content:encoded><![CDATA[Category: 개발 도구 / 데이터베이스<br/>App: TablePro<br/>Description: 주요 SQL/NoSQL 엔진 연결과 AI 지원 SQL 편집을 제공하는 빠른 데이터베이스 클라이언트.<br/>Open Source: https://github.com/datlechin/TablePro<br/>Commit: Add TablePro<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ca8cf30db1f3ed156f08969accef62df3026be26]]></content:encoded>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
|
||||
274
feed/feed-zh.xml
274
feed/feed-zh.xml
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
||||
<channel>
|
||||
<title>Awesome Mac - 最近新增应用</title>
|
||||
<link>https://jaywcjlove.github.io/awesome-mac</link>
|
||||
@ -14,7 +14,13 @@
|
||||
<guid isPermaLink="false">bd7eb478d51c6ef17c18cb0274d682531af2fcb3:Atomic Chat</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 13:15:09 GMT</pubDate>
|
||||
<category>AI 客户端</category>
|
||||
<description>Category: AI 客户端<br/>App: Atomic Chat<br/>Description: 支持本地 LLM、云模型、MCP 和 OpenAI 兼容 API 的开源 AI 聊天客户端。<br/>Open Source: https://github.com/AtomicBot-ai/Atomic-Chat<br/>Commit: Add Atomic Chat<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bd7eb478d51c6ef17c18cb0274d682531af2fcb3</description>
|
||||
<description>Category: AI 客户端
|
||||
App: Atomic Chat
|
||||
Description: 支持本地 LLM、云模型、MCP 和 OpenAI 兼容 API 的开源 AI 聊天客户端。
|
||||
Open Source: https://github.com/AtomicBot-ai/Atomic-Chat
|
||||
Commit: Add Atomic Chat
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bd7eb478d51c6ef17c18cb0274d682531af2fcb3</description>
|
||||
<content:encoded><![CDATA[Category: AI 客户端<br/>App: Atomic Chat<br/>Description: 支持本地 LLM、云模型、MCP 和 OpenAI 兼容 API 的开源 AI 聊天客户端。<br/>Open Source: https://github.com/AtomicBot-ai/Atomic-Chat<br/>Commit: Add Atomic Chat<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bd7eb478d51c6ef17c18cb0274d682531af2fcb3]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Dimly</title>
|
||||
@ -22,7 +28,13 @@
|
||||
<guid isPermaLink="false">d53a3a575237426467147d25d929bdcc5eeb1f9a:Dimly</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 08:08:46 GMT</pubDate>
|
||||
<category>其它实用工具</category>
|
||||
<description>Category: 其它实用工具<br/>App: Dimly<br/>Description: 从一个菜单栏应用统一控制多显示器环境下的亮度。<br/>Website: https://feuerbacher.me/projects/dimly<br/>Commit: Add Dimly to the ja/ko/zh list. (#1938)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/d53a3a575237426467147d25d929bdcc5eeb1f9a</description>
|
||||
<description>Category: 其它实用工具
|
||||
App: Dimly
|
||||
Description: 从一个菜单栏应用统一控制多显示器环境下的亮度。
|
||||
Website: https://feuerbacher.me/projects/dimly
|
||||
Commit: Add Dimly to the ja/ko/zh list. (#1938)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/d53a3a575237426467147d25d929bdcc5eeb1f9a</description>
|
||||
<content:encoded><![CDATA[Category: 其它实用工具<br/>App: Dimly<br/>Description: 从一个菜单栏应用统一控制多显示器环境下的亮度。<br/>Website: https://feuerbacher.me/projects/dimly<br/>Commit: Add Dimly to the ja/ko/zh list. (#1938)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/d53a3a575237426467147d25d929bdcc5eeb1f9a]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>OnlyOffice</title>
|
||||
@ -30,7 +42,13 @@
|
||||
<guid isPermaLink="false">ff47fff66161f57a8b0b19170e92bce30c8aba8f:OnlyOffice</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 07:50:33 GMT</pubDate>
|
||||
<category>阅读与写作工具 / Office</category>
|
||||
<description>Category: 阅读与写作工具 / Office<br/>App: OnlyOffice<br/>Description: 集成文档、表格和演示编辑器的办公套件。<br/>Website: https://www.onlyoffice.com/<br/>Commit: docs: simplify OnlyOffice and Pixley Reader descriptions<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ff47fff66161f57a8b0b19170e92bce30c8aba8f</description>
|
||||
<description>Category: 阅读与写作工具 / Office
|
||||
App: OnlyOffice
|
||||
Description: 集成文档、表格和演示编辑器的办公套件。
|
||||
Website: https://www.onlyoffice.com/
|
||||
Commit: docs: simplify OnlyOffice and Pixley Reader descriptions
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ff47fff66161f57a8b0b19170e92bce30c8aba8f</description>
|
||||
<content:encoded><![CDATA[Category: 阅读与写作工具 / Office<br/>App: OnlyOffice<br/>Description: 集成文档、表格和演示编辑器的办公套件。<br/>Website: https://www.onlyoffice.com/<br/>Commit: docs: simplify OnlyOffice and Pixley Reader descriptions<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ff47fff66161f57a8b0b19170e92bce30c8aba8f]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>ClawdHome</title>
|
||||
@ -38,7 +56,13 @@
|
||||
<guid isPermaLink="false">29a8d9fea61d823eca4f0573f2881b38b408e559:ClawdHome</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 07:08:12 GMT</pubDate>
|
||||
<category>AI 客户端</category>
|
||||
<description>Category: AI 客户端<br/>App: ClawdHome<br/>Description: 用一个控制台管理多个相互隔离的 OpenClaw 网关实例。<br/>Website: https://clawdhome.app/<br/>Commit: Add ClawdHome<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/29a8d9fea61d823eca4f0573f2881b38b408e559</description>
|
||||
<description>Category: AI 客户端
|
||||
App: ClawdHome
|
||||
Description: 用一个控制台管理多个相互隔离的 OpenClaw 网关实例。
|
||||
Website: https://clawdhome.app/
|
||||
Commit: Add ClawdHome
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/29a8d9fea61d823eca4f0573f2881b38b408e559</description>
|
||||
<content:encoded><![CDATA[Category: AI 客户端<br/>App: ClawdHome<br/>Description: 用一个控制台管理多个相互隔离的 OpenClaw 网关实例。<br/>Website: https://clawdhome.app/<br/>Commit: Add ClawdHome<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/29a8d9fea61d823eca4f0573f2881b38b408e559]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>ClashBar</title>
|
||||
@ -46,7 +70,13 @@
|
||||
<guid isPermaLink="false">7dec9ecd64368a50a565d99a83104f00a6bdd09d:ClashBar</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 05:23:18 GMT</pubDate>
|
||||
<category>科学上网</category>
|
||||
<description>Category: 科学上网<br/>App: ClashBar<br/>Description: 由 mihomo 驱动的菜单栏代理客户端。<br/>Website: https://clashbar.vercel.app/<br/>Commit: docs: add ClashBar to localized readmes<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7dec9ecd64368a50a565d99a83104f00a6bdd09d</description>
|
||||
<description>Category: 科学上网
|
||||
App: ClashBar
|
||||
Description: 由 mihomo 驱动的菜单栏代理客户端。
|
||||
Website: https://clashbar.vercel.app/
|
||||
Commit: docs: add ClashBar to localized readmes
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7dec9ecd64368a50a565d99a83104f00a6bdd09d</description>
|
||||
<content:encoded><![CDATA[Category: 科学上网<br/>App: ClashBar<br/>Description: 由 mihomo 驱动的菜单栏代理客户端。<br/>Website: https://clashbar.vercel.app/<br/>Commit: docs: add ClashBar to localized readmes<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7dec9ecd64368a50a565d99a83104f00a6bdd09d]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Repose</title>
|
||||
@ -54,7 +84,13 @@
|
||||
<guid isPermaLink="false">c53c14bea478c0c1512b71274582eaea627a7c93:Repose</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 02:17:35 GMT</pubDate>
|
||||
<category>其它实用工具 / 菜单栏工具</category>
|
||||
<description>Category: 其它实用工具 / 菜单栏工具<br/>App: Repose<br/>Description: 一款会在休息时间调暗屏幕并在通话时自动暂停的菜单栏休息计时器。<br/>Open Source: https://github.com/fikrikarim/repose<br/>Commit: Add Repose to the ja/ko/zh list. (#1935)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/c53c14bea478c0c1512b71274582eaea627a7c93</description>
|
||||
<description>Category: 其它实用工具 / 菜单栏工具
|
||||
App: Repose
|
||||
Description: 一款会在休息时间调暗屏幕并在通话时自动暂停的菜单栏休息计时器。
|
||||
Open Source: https://github.com/fikrikarim/repose
|
||||
Commit: Add Repose to the ja/ko/zh list. (#1935)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/c53c14bea478c0c1512b71274582eaea627a7c93</description>
|
||||
<content:encoded><![CDATA[Category: 其它实用工具 / 菜单栏工具<br/>App: Repose<br/>Description: 一款会在休息时间调暗屏幕并在通话时自动暂停的菜单栏休息计时器。<br/>Open Source: https://github.com/fikrikarim/repose<br/>Commit: Add Repose to the ja/ko/zh list. (#1935)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/c53c14bea478c0c1512b71274582eaea627a7c93]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Flock</title>
|
||||
@ -62,7 +98,13 @@
|
||||
<guid isPermaLink="false">6a9af21ad3f24ffe55573d39c44becf64389831e:Flock</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 02:02:22 GMT</pubDate>
|
||||
<category>开发者工具 / 命令行应用</category>
|
||||
<description>Category: 开发者工具 / 命令行应用<br/>App: Flock<br/>Description: 一款可在同一工作区并行运行多个 Claude Code 与 Shell 会话的终端多路复用工具。<br/>Open Source: https://github.com/Divagation/flock<br/>Commit: Add Flock to the ja/ko/zh list. #1936<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6a9af21ad3f24ffe55573d39c44becf64389831e</description>
|
||||
<description>Category: 开发者工具 / 命令行应用
|
||||
App: Flock
|
||||
Description: 一款可在同一工作区并行运行多个 Claude Code 与 Shell 会话的终端多路复用工具。
|
||||
Open Source: https://github.com/Divagation/flock
|
||||
Commit: Add Flock to the ja/ko/zh list. #1936
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6a9af21ad3f24ffe55573d39c44becf64389831e</description>
|
||||
<content:encoded><![CDATA[Category: 开发者工具 / 命令行应用<br/>App: Flock<br/>Description: 一款可在同一工作区并行运行多个 Claude Code 与 Shell 会话的终端多路复用工具。<br/>Open Source: https://github.com/Divagation/flock<br/>Commit: Add Flock to the ja/ko/zh list. #1936<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6a9af21ad3f24ffe55573d39c44becf64389831e]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>markdown-quicklook</title>
|
||||
@ -70,7 +112,13 @@
|
||||
<guid isPermaLink="false">6f0cbac0aae80f402ed3d21d73a646b9a62a147b:markdown-quicklook</guid>
|
||||
<pubDate>Sun, 29 Mar 2026 12:11:49 GMT</pubDate>
|
||||
<category>QuickLook插件</category>
|
||||
<description>Category: QuickLook插件<br/>App: markdown-quicklook<br/>Description: 渲染 Markdown 预览,支持语法高亮、YAML front matter、可配置字体/颜色,以及菜单栏切换开关。一键安装。<br/>Open Source: https://github.com/ruspg/markdown-quicklook<br/>Commit: Add markdown-quicklook to QuickLook Plugins section (#1934)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6f0cbac0aae80f402ed3d21d73a646b9a62a147b</description>
|
||||
<description>Category: QuickLook插件
|
||||
App: markdown-quicklook
|
||||
Description: 渲染 Markdown 预览,支持语法高亮、YAML front matter、可配置字体/颜色,以及菜单栏切换开关。一键安装。
|
||||
Open Source: https://github.com/ruspg/markdown-quicklook
|
||||
Commit: Add markdown-quicklook to QuickLook Plugins section (#1934)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6f0cbac0aae80f402ed3d21d73a646b9a62a147b</description>
|
||||
<content:encoded><![CDATA[Category: QuickLook插件<br/>App: markdown-quicklook<br/>Description: 渲染 Markdown 预览,支持语法高亮、YAML front matter、可配置字体/颜色,以及菜单栏切换开关。一键安装。<br/>Open Source: https://github.com/ruspg/markdown-quicklook<br/>Commit: Add markdown-quicklook to QuickLook Plugins section (#1934)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6f0cbac0aae80f402ed3d21d73a646b9a62a147b]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>TouchBridge</title>
|
||||
@ -78,7 +126,13 @@
|
||||
<guid isPermaLink="false">dfbe3aa4b330a229e80509250ef88b70e9b5612e:TouchBridge</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 21:15:53 GMT</pubDate>
|
||||
<category>安全工具</category>
|
||||
<description>Category: 安全工具<br/>App: TouchBridge<br/>Description: 使用手机指纹完成身份验证的开源工具。<br/>Open Source: https://github.com/HMAKT99/UnTouchID<br/>Commit: Add TouchBridge to the ja/ko/zh lish. #1930<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/dfbe3aa4b330a229e80509250ef88b70e9b5612e</description>
|
||||
<description>Category: 安全工具
|
||||
App: TouchBridge
|
||||
Description: 使用手机指纹完成身份验证的开源工具。
|
||||
Open Source: https://github.com/HMAKT99/UnTouchID
|
||||
Commit: Add TouchBridge to the ja/ko/zh lish. #1930
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/dfbe3aa4b330a229e80509250ef88b70e9b5612e</description>
|
||||
<content:encoded><![CDATA[Category: 安全工具<br/>App: TouchBridge<br/>Description: 使用手机指纹完成身份验证的开源工具。<br/>Open Source: https://github.com/HMAKT99/UnTouchID<br/>Commit: Add TouchBridge to the ja/ko/zh lish. #1930<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/dfbe3aa4b330a229e80509250ef88b70e9b5612e]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>VSCodium</title>
|
||||
@ -86,7 +140,13 @@
|
||||
<guid isPermaLink="false">89efdda4fc72bd531bdd7dc25dd7633d00c684b7:VSCodium</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 05:46:23 GMT</pubDate>
|
||||
<category>开发者工具 / 编辑器</category>
|
||||
<description>Category: 开发者工具 / 编辑器<br/>App: VSCodium<br/>Description: 社区驱动的 VS Code 自由开源发行版。<br/>Website: https://vscodium.com/<br/>Commit: Add VSCodium to the ja/ko/zh list. #1926<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/89efdda4fc72bd531bdd7dc25dd7633d00c684b7</description>
|
||||
<description>Category: 开发者工具 / 编辑器
|
||||
App: VSCodium
|
||||
Description: 社区驱动的 VS Code 自由开源发行版。
|
||||
Website: https://vscodium.com/
|
||||
Commit: Add VSCodium to the ja/ko/zh list. #1926
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/89efdda4fc72bd531bdd7dc25dd7633d00c684b7</description>
|
||||
<content:encoded><![CDATA[Category: 开发者工具 / 编辑器<br/>App: VSCodium<br/>Description: 社区驱动的 VS Code 自由开源发行版。<br/>Website: https://vscodium.com/<br/>Commit: Add VSCodium to the ja/ko/zh list. #1926<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/89efdda4fc72bd531bdd7dc25dd7633d00c684b7]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>OpenDictation</title>
|
||||
@ -94,7 +154,13 @@
|
||||
<guid isPermaLink="false">fc74bd6c3f22b939b3f70b345b40001648a61e64:OpenDictation</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 04:36:32 GMT</pubDate>
|
||||
<category>音频和视频</category>
|
||||
<description>Category: 音频和视频<br/>App: OpenDictation<br/>Description: 支持本地与云端语音转文字的开源听写工具。<br/>Open Source: https://github.com/kdcokenny/OpenDictation<br/>Commit: Add OpenDictation to the ja/ko/zh list (#1927).<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/fc74bd6c3f22b939b3f70b345b40001648a61e64</description>
|
||||
<description>Category: 音频和视频
|
||||
App: OpenDictation
|
||||
Description: 支持本地与云端语音转文字的开源听写工具。
|
||||
Open Source: https://github.com/kdcokenny/OpenDictation
|
||||
Commit: Add OpenDictation to the ja/ko/zh list (#1927).
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/fc74bd6c3f22b939b3f70b345b40001648a61e64</description>
|
||||
<content:encoded><![CDATA[Category: 音频和视频<br/>App: OpenDictation<br/>Description: 支持本地与云端语音转文字的开源听写工具。<br/>Open Source: https://github.com/kdcokenny/OpenDictation<br/>Commit: Add OpenDictation to the ja/ko/zh list (#1927).<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/fc74bd6c3f22b939b3f70b345b40001648a61e64]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Nudge</title>
|
||||
@ -102,7 +168,13 @@
|
||||
<guid isPermaLink="false">5954cd8e0fc69805edc52d757b247f49e2da3229:Nudge</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 03:55:58 GMT</pubDate>
|
||||
<category>其它实用工具 / 窗口管理</category>
|
||||
<description>Category: 其它实用工具 / 窗口管理<br/>App: Nudge<br/>Description: 键盘快捷键和拖拽手势窗口管理工具。[![Open-Source Software][OSS Icon]](https://github.com/mikusnuz/nudge)<br/>Website: https://nudge.run<br/>Commit: Add Nudge to the ja/zh/ko list. #1928<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5954cd8e0fc69805edc52d757b247f49e2da3229</description>
|
||||
<description>Category: 其它实用工具 / 窗口管理
|
||||
App: Nudge
|
||||
Description: 键盘快捷键和拖拽手势窗口管理工具。[![Open-Source Software][OSS Icon]](https://github.com/mikusnuz/nudge)
|
||||
Website: https://nudge.run
|
||||
Commit: Add Nudge to the ja/zh/ko list. #1928
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5954cd8e0fc69805edc52d757b247f49e2da3229</description>
|
||||
<content:encoded><![CDATA[Category: 其它实用工具 / 窗口管理<br/>App: Nudge<br/>Description: 键盘快捷键和拖拽手势窗口管理工具。[![Open-Source Software][OSS Icon]](https://github.com/mikusnuz/nudge)<br/>Website: https://nudge.run<br/>Commit: Add Nudge to the ja/zh/ko list. #1928<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5954cd8e0fc69805edc52d757b247f49e2da3229]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>macshot</title>
|
||||
@ -110,7 +182,13 @@
|
||||
<guid isPermaLink="false">7ca42baf8d20b6225fb3aa12a1236e812f9fc9b3:macshot</guid>
|
||||
<pubDate>Wed, 25 Mar 2026 01:45:55 GMT</pubDate>
|
||||
<category>设计和产品 / 截图工具</category>
|
||||
<description>Category: 设计和产品 / 截图工具<br/>App: macshot<br/>Description: 原生 macOS 截图和标注工具,灵感来自 Flameshot,支持屏幕录制、滚动截图和 OCR。<br/>Open Source: https://github.com/sw33tlie/macshot<br/>Commit: Add macshot to Screenshot Tools (#1916)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7ca42baf8d20b6225fb3aa12a1236e812f9fc9b3</description>
|
||||
<description>Category: 设计和产品 / 截图工具
|
||||
App: macshot
|
||||
Description: 原生 macOS 截图和标注工具,灵感来自 Flameshot,支持屏幕录制、滚动截图和 OCR。
|
||||
Open Source: https://github.com/sw33tlie/macshot
|
||||
Commit: Add macshot to Screenshot Tools (#1916)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7ca42baf8d20b6225fb3aa12a1236e812f9fc9b3</description>
|
||||
<content:encoded><![CDATA[Category: 设计和产品 / 截图工具<br/>App: macshot<br/>Description: 原生 macOS 截图和标注工具,灵感来自 Flameshot,支持屏幕录制、滚动截图和 OCR。<br/>Open Source: https://github.com/sw33tlie/macshot<br/>Commit: Add macshot to Screenshot Tools (#1916)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7ca42baf8d20b6225fb3aa12a1236e812f9fc9b3]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>App Uninstaller</title>
|
||||
@ -118,7 +196,13 @@
|
||||
<guid isPermaLink="false">ffcaf60b826240c20afa9d945b4bf748cae483d8:App Uninstaller</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 14:02:42 GMT</pubDate>
|
||||
<category>其它实用工具 / 清理卸载</category>
|
||||
<description>Category: 其它实用工具 / 清理卸载<br/>App: App Uninstaller<br/>Description: 轻量级应用卸载工具,支持拖放操作。使用 Swift 和 SwiftUI 构建。[![Open-Source Software][OSS Icon]](https://github.com/kamjin3086/AppUninstaller)<br/>Open Source: https://github.com/kamjin3086/AppUninstaller<br/>Commit: Add App Uninstaller to Cleanup and Uninstall section (#1913)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ffcaf60b826240c20afa9d945b4bf748cae483d8</description>
|
||||
<description>Category: 其它实用工具 / 清理卸载
|
||||
App: App Uninstaller
|
||||
Description: 轻量级应用卸载工具,支持拖放操作。使用 Swift 和 SwiftUI 构建。[![Open-Source Software][OSS Icon]](https://github.com/kamjin3086/AppUninstaller)
|
||||
Open Source: https://github.com/kamjin3086/AppUninstaller
|
||||
Commit: Add App Uninstaller to Cleanup and Uninstall section (#1913)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ffcaf60b826240c20afa9d945b4bf748cae483d8</description>
|
||||
<content:encoded><![CDATA[Category: 其它实用工具 / 清理卸载<br/>App: App Uninstaller<br/>Description: 轻量级应用卸载工具,支持拖放操作。使用 Swift 和 SwiftUI 构建。[![Open-Source Software][OSS Icon]](https://github.com/kamjin3086/AppUninstaller)<br/>Open Source: https://github.com/kamjin3086/AppUninstaller<br/>Commit: Add App Uninstaller to Cleanup and Uninstall section (#1913)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ffcaf60b826240c20afa9d945b4bf748cae483d8]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Claude Usage Monitor</title>
|
||||
@ -126,7 +210,13 @@
|
||||
<guid isPermaLink="false">2f669a63d29ebbe2b3933f21eac34b2082306377:Claude Usage Monitor</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 14:01:22 GMT</pubDate>
|
||||
<category>其它实用工具 / 菜单栏工具</category>
|
||||
<description>Category: 其它实用工具 / 菜单栏工具<br/>App: Claude Usage Monitor<br/>Description: 在菜单栏通过实时计数器跟踪 Claude 用量的工具。<br/>Open Source: https://github.com/theDanButuc/Claude-Usage-Monitor<br/>Commit: Add Claude Usage Monitor to the ja/ko/zh list. #1912<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/2f669a63d29ebbe2b3933f21eac34b2082306377</description>
|
||||
<description>Category: 其它实用工具 / 菜单栏工具
|
||||
App: Claude Usage Monitor
|
||||
Description: 在菜单栏通过实时计数器跟踪 Claude 用量的工具。
|
||||
Open Source: https://github.com/theDanButuc/Claude-Usage-Monitor
|
||||
Commit: Add Claude Usage Monitor to the ja/ko/zh list. #1912
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/2f669a63d29ebbe2b3933f21eac34b2082306377</description>
|
||||
<content:encoded><![CDATA[Category: 其它实用工具 / 菜单栏工具<br/>App: Claude Usage Monitor<br/>Description: 在菜单栏通过实时计数器跟踪 Claude 用量的工具。<br/>Open Source: https://github.com/theDanButuc/Claude-Usage-Monitor<br/>Commit: Add Claude Usage Monitor to the ja/ko/zh list. #1912<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/2f669a63d29ebbe2b3933f21eac34b2082306377]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Zipic</title>
|
||||
@ -134,7 +224,13 @@
|
||||
<guid isPermaLink="false">74d4d600677a63bef7d165241f1552d4f672df4f:Zipic</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 06:45:35 GMT</pubDate>
|
||||
<category>设计和产品 / 其它工具</category>
|
||||
<description>Category: 设计和产品 / 其它工具<br/>App: Zipic<br/>Description: 批量图片压缩工具,支持自定义预设、自动化工作流,集成快捷指令和 Raycast。<br/>Website: https://zipic.app/<br/>Commit: Add Zipic to Design and Product - Other Tools (#1910)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/74d4d600677a63bef7d165241f1552d4f672df4f</description>
|
||||
<description>Category: 设计和产品 / 其它工具
|
||||
App: Zipic
|
||||
Description: 批量图片压缩工具,支持自定义预设、自动化工作流,集成快捷指令和 Raycast。
|
||||
Website: https://zipic.app/
|
||||
Commit: Add Zipic to Design and Product - Other Tools (#1910)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/74d4d600677a63bef7d165241f1552d4f672df4f</description>
|
||||
<content:encoded><![CDATA[Category: 设计和产品 / 其它工具<br/>App: Zipic<br/>Description: 批量图片压缩工具,支持自定义预设、自动化工作流,集成快捷指令和 Raycast。<br/>Website: https://zipic.app/<br/>Commit: Add Zipic to Design and Product - Other Tools (#1910)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/74d4d600677a63bef7d165241f1552d4f672df4f]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Orchard</title>
|
||||
@ -142,7 +238,13 @@
|
||||
<guid isPermaLink="false">0d36dfc922d82a46b83664683364fbef1cfd0243:Orchard</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 06:45:11 GMT</pubDate>
|
||||
<category>AI 客户端</category>
|
||||
<description>Category: AI 客户端<br/>App: Orchard<br/>Description: MCP 服务,将 AI 助手与日历、邮件、备忘录、提醒事项、音乐等 Apple 原生应用连接。<br/>Website: https://orchard.5km.tech/<br/>Commit: Add Orchard to AI Client (#1911)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0d36dfc922d82a46b83664683364fbef1cfd0243</description>
|
||||
<description>Category: AI 客户端
|
||||
App: Orchard
|
||||
Description: MCP 服务,将 AI 助手与日历、邮件、备忘录、提醒事项、音乐等 Apple 原生应用连接。
|
||||
Website: https://orchard.5km.tech/
|
||||
Commit: Add Orchard to AI Client (#1911)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0d36dfc922d82a46b83664683364fbef1cfd0243</description>
|
||||
<content:encoded><![CDATA[Category: AI 客户端<br/>App: Orchard<br/>Description: MCP 服务,将 AI 助手与日历、邮件、备忘录、提醒事项、音乐等 Apple 原生应用连接。<br/>Website: https://orchard.5km.tech/<br/>Commit: Add Orchard to AI Client (#1911)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0d36dfc922d82a46b83664683364fbef1cfd0243]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Azex Speech</title>
|
||||
@ -150,7 +252,13 @@
|
||||
<guid isPermaLink="false">9f528db2256e29d17fdbc0fb740200746cb3bfeb:Azex Speech</guid>
|
||||
<pubDate>Sun, 22 Mar 2026 04:15:25 GMT</pubDate>
|
||||
<category>音频和视频</category>
|
||||
<description>Category: 音频和视频<br/>App: Azex Speech<br/>Description: 一款面向 AI 与加密场景、中英混说更友好的语音输入工具。<br/>Open Source: https://github.com/azex-ai/speech<br/>Commit: Add Azex Speech to the ja/ko/zh list. #1909<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9f528db2256e29d17fdbc0fb740200746cb3bfeb</description>
|
||||
<description>Category: 音频和视频
|
||||
App: Azex Speech
|
||||
Description: 一款面向 AI 与加密场景、中英混说更友好的语音输入工具。
|
||||
Open Source: https://github.com/azex-ai/speech
|
||||
Commit: Add Azex Speech to the ja/ko/zh list. #1909
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9f528db2256e29d17fdbc0fb740200746cb3bfeb</description>
|
||||
<content:encoded><![CDATA[Category: 音频和视频<br/>App: Azex Speech<br/>Description: 一款面向 AI 与加密场景、中英混说更友好的语音输入工具。<br/>Open Source: https://github.com/azex-ai/speech<br/>Commit: Add Azex Speech to the ja/ko/zh list. #1909<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9f528db2256e29d17fdbc0fb740200746cb3bfeb]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>NoxKey</title>
|
||||
@ -158,7 +266,13 @@
|
||||
<guid isPermaLink="false">f5cd3bcad0af7198b4dad407a0c096e559a4f042:NoxKey</guid>
|
||||
<pubDate>Sun, 22 Mar 2026 04:10:59 GMT</pubDate>
|
||||
<category>安全工具</category>
|
||||
<description>Category: 安全工具<br/>App: NoxKey<br/>Description: 一款通过钥匙串和 Touch ID 管理 API 密钥与令牌的工具。<br/>Open Source: https://github.com/No-Box-Dev/Noxkey<br/>Commit: Add NoxKey to the ja/ko/zh list. #1907<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f5cd3bcad0af7198b4dad407a0c096e559a4f042</description>
|
||||
<description>Category: 安全工具
|
||||
App: NoxKey
|
||||
Description: 一款通过钥匙串和 Touch ID 管理 API 密钥与令牌的工具。
|
||||
Open Source: https://github.com/No-Box-Dev/Noxkey
|
||||
Commit: Add NoxKey to the ja/ko/zh list. #1907
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f5cd3bcad0af7198b4dad407a0c096e559a4f042</description>
|
||||
<content:encoded><![CDATA[Category: 安全工具<br/>App: NoxKey<br/>Description: 一款通过钥匙串和 Touch ID 管理 API 密钥与令牌的工具。<br/>Open Source: https://github.com/No-Box-Dev/Noxkey<br/>Commit: Add NoxKey to the ja/ko/zh list. #1907<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f5cd3bcad0af7198b4dad407a0c096e559a4f042]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>ProBoard</title>
|
||||
@ -166,7 +280,13 @@
|
||||
<guid isPermaLink="false">ed5f2436448b72a8cae2f8e01d5a0b5f5f883ba0:ProBoard</guid>
|
||||
<pubDate>Sat, 21 Mar 2026 10:00:10 GMT</pubDate>
|
||||
<category>其它实用工具 / 效率工具</category>
|
||||
<description>Category: 其它实用工具 / 效率工具<br/>App: ProBoard<br/>Description: 通过一个面板来帮助你高效管理所有项目信息。[![App Store][app-store Icon]](https://apps.apple.com/app/id6748314346?platform=mac)<br/>App Store: https://apps.apple.com/app/id6748314346?platform=mac<br/>Commit: Add ProBoard to productivity tools list (#1906)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ed5f2436448b72a8cae2f8e01d5a0b5f5f883ba0</description>
|
||||
<description>Category: 其它实用工具 / 效率工具
|
||||
App: ProBoard
|
||||
Description: 通过一个面板来帮助你高效管理所有项目信息。[![App Store][app-store Icon]](https://apps.apple.com/app/id6748314346?platform=mac)
|
||||
App Store: https://apps.apple.com/app/id6748314346?platform=mac
|
||||
Commit: Add ProBoard to productivity tools list (#1906)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ed5f2436448b72a8cae2f8e01d5a0b5f5f883ba0</description>
|
||||
<content:encoded><![CDATA[Category: 其它实用工具 / 效率工具<br/>App: ProBoard<br/>Description: 通过一个面板来帮助你高效管理所有项目信息。[![App Store][app-store Icon]](https://apps.apple.com/app/id6748314346?platform=mac)<br/>App Store: https://apps.apple.com/app/id6748314346?platform=mac<br/>Commit: Add ProBoard to productivity tools list (#1906)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ed5f2436448b72a8cae2f8e01d5a0b5f5f883ba0]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Lockpaw</title>
|
||||
@ -174,7 +294,13 @@
|
||||
<guid isPermaLink="false">3262420ea5ed4afd16d9c81bb1524c82ca4965f7:Lockpaw</guid>
|
||||
<pubDate>Sat, 21 Mar 2026 01:36:07 GMT</pubDate>
|
||||
<category>安全工具</category>
|
||||
<description>Category: 安全工具<br/>App: Lockpaw<br/>Description: Menu bar screen guard for macOS — lock and unlock your screen with a hotkey.<br/>Website: https://getlockpaw.com<br/>Commit: Add Lockpaw to Security Tools (#1901)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3262420ea5ed4afd16d9c81bb1524c82ca4965f7</description>
|
||||
<description>Category: 安全工具
|
||||
App: Lockpaw
|
||||
Description: Menu bar screen guard for macOS — lock and unlock your screen with a hotkey.
|
||||
Website: https://getlockpaw.com
|
||||
Commit: Add Lockpaw to Security Tools (#1901)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3262420ea5ed4afd16d9c81bb1524c82ca4965f7</description>
|
||||
<content:encoded><![CDATA[Category: 安全工具<br/>App: Lockpaw<br/>Description: Menu bar screen guard for macOS — lock and unlock your screen with a hotkey.<br/>Website: https://getlockpaw.com<br/>Commit: Add Lockpaw to Security Tools (#1901)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3262420ea5ed4afd16d9c81bb1524c82ca4965f7]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Redis Insight</title>
|
||||
@ -182,7 +308,13 @@
|
||||
<guid isPermaLink="false">f15cdc15655effd7aadc5db234b9597abe6baa7a:Redis Insight</guid>
|
||||
<pubDate>Sat, 21 Mar 2026 01:35:38 GMT</pubDate>
|
||||
<category>开发者工具 / 数据库</category>
|
||||
<description>Category: 开发者工具 / 数据库<br/>App: Redis Insight<br/>Description: Redis 官方推出的数据浏览、调试与可视化工具。<br/>Website: https://redis.io/insight/<br/>Commit: Add Redis Insight fix #1899<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f15cdc15655effd7aadc5db234b9597abe6baa7a</description>
|
||||
<description>Category: 开发者工具 / 数据库
|
||||
App: Redis Insight
|
||||
Description: Redis 官方推出的数据浏览、调试与可视化工具。
|
||||
Website: https://redis.io/insight/
|
||||
Commit: Add Redis Insight fix #1899
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f15cdc15655effd7aadc5db234b9597abe6baa7a</description>
|
||||
<content:encoded><![CDATA[Category: 开发者工具 / 数据库<br/>App: Redis Insight<br/>Description: Redis 官方推出的数据浏览、调试与可视化工具。<br/>Website: https://redis.io/insight/<br/>Commit: Add Redis Insight fix #1899<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f15cdc15655effd7aadc5db234b9597abe6baa7a]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>DMG Maker</title>
|
||||
@ -190,7 +322,13 @@
|
||||
<guid isPermaLink="false">9a0dfca40df6df056ea648db3a05a2cdafd52510:DMG Maker</guid>
|
||||
<pubDate>Fri, 20 Mar 2026 00:45:38 GMT</pubDate>
|
||||
<category>软件打包工具</category>
|
||||
<description>Category: 软件打包工具<br/>App: DMG Maker<br/>Description: 一款带精美视觉效果和 CLI 支持的 DMG 制作工具。<br/>Open Source: https://github.com/saihgupr/DMGMaker<br/>Commit: Add DMG Maker<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9a0dfca40df6df056ea648db3a05a2cdafd52510</description>
|
||||
<description>Category: 软件打包工具
|
||||
App: DMG Maker
|
||||
Description: 一款带精美视觉效果和 CLI 支持的 DMG 制作工具。
|
||||
Open Source: https://github.com/saihgupr/DMGMaker
|
||||
Commit: Add DMG Maker
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9a0dfca40df6df056ea648db3a05a2cdafd52510</description>
|
||||
<content:encoded><![CDATA[Category: 软件打包工具<br/>App: DMG Maker<br/>Description: 一款带精美视觉效果和 CLI 支持的 DMG 制作工具。<br/>Open Source: https://github.com/saihgupr/DMGMaker<br/>Commit: Add DMG Maker<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9a0dfca40df6df056ea648db3a05a2cdafd52510]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Fazm</title>
|
||||
@ -198,7 +336,13 @@
|
||||
<guid isPermaLink="false">e9bce406b634e66ea822ba0462aa1fa8305ae89e:Fazm</guid>
|
||||
<pubDate>Wed, 18 Mar 2026 03:43:16 GMT</pubDate>
|
||||
<category>AI 客户端</category>
|
||||
<description>Category: AI 客户端<br/>App: Fazm<br/>Description: 一款可用语音控制应用、文件和工作流的开源 AI 代理。<br/>Website: https://fazm.ai<br/>Commit: Add Fazm to the ja/ko/zh list. #1894<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e9bce406b634e66ea822ba0462aa1fa8305ae89e</description>
|
||||
<description>Category: AI 客户端
|
||||
App: Fazm
|
||||
Description: 一款可用语音控制应用、文件和工作流的开源 AI 代理。
|
||||
Website: https://fazm.ai
|
||||
Commit: Add Fazm to the ja/ko/zh list. #1894
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e9bce406b634e66ea822ba0462aa1fa8305ae89e</description>
|
||||
<content:encoded><![CDATA[Category: AI 客户端<br/>App: Fazm<br/>Description: 一款可用语音控制应用、文件和工作流的开源 AI 代理。<br/>Website: https://fazm.ai<br/>Commit: Add Fazm to the ja/ko/zh list. #1894<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e9bce406b634e66ea822ba0462aa1fa8305ae89e]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Nimbalyst</title>
|
||||
@ -206,7 +350,13 @@
|
||||
<guid isPermaLink="false">3e4582d3cfc79156f438420b91899d6810f54b31:Nimbalyst</guid>
|
||||
<pubDate>Wed, 18 Mar 2026 01:40:27 GMT</pubDate>
|
||||
<category>开发者工具 / 编辑器</category>
|
||||
<description>Category: 开发者工具 / 编辑器<br/>App: Nimbalyst<br/>Description: 一款用于管理 AI 编码会话、任务和项目文件的可视化工作区。<br/>Website: https://nimbalyst.com/<br/>Commit: Add Nimbalyst to the ja/ko/zh list. #1893<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3e4582d3cfc79156f438420b91899d6810f54b31</description>
|
||||
<description>Category: 开发者工具 / 编辑器
|
||||
App: Nimbalyst
|
||||
Description: 一款用于管理 AI 编码会话、任务和项目文件的可视化工作区。
|
||||
Website: https://nimbalyst.com/
|
||||
Commit: Add Nimbalyst to the ja/ko/zh list. #1893
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3e4582d3cfc79156f438420b91899d6810f54b31</description>
|
||||
<content:encoded><![CDATA[Category: 开发者工具 / 编辑器<br/>App: Nimbalyst<br/>Description: 一款用于管理 AI 编码会话、任务和项目文件的可视化工作区。<br/>Website: https://nimbalyst.com/<br/>Commit: Add Nimbalyst to the ja/ko/zh list. #1893<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3e4582d3cfc79156f438420b91899d6810f54b31]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>ScreenSage Pro</title>
|
||||
@ -214,7 +364,13 @@
|
||||
<guid isPermaLink="false">4647770f5192c2fb0f5b782d49ebc49f137707b2:ScreenSage Pro</guid>
|
||||
<pubDate>Tue, 17 Mar 2026 15:31:23 GMT</pubDate>
|
||||
<category>设计和产品 / 屏幕录制</category>
|
||||
<description>Category: 设计和产品 / 屏幕录制<br/>App: ScreenSage Pro<br/>Description: 一款可在几分钟内制作精美录屏视频的工具。<br/>Website: https://screensage.pro/<br/>Commit: Add ScreenSage Pro<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/4647770f5192c2fb0f5b782d49ebc49f137707b2</description>
|
||||
<description>Category: 设计和产品 / 屏幕录制
|
||||
App: ScreenSage Pro
|
||||
Description: 一款可在几分钟内制作精美录屏视频的工具。
|
||||
Website: https://screensage.pro/
|
||||
Commit: Add ScreenSage Pro
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/4647770f5192c2fb0f5b782d49ebc49f137707b2</description>
|
||||
<content:encoded><![CDATA[Category: 设计和产品 / 屏幕录制<br/>App: ScreenSage Pro<br/>Description: 一款可在几分钟内制作精美录屏视频的工具。<br/>Website: https://screensage.pro/<br/>Commit: Add ScreenSage Pro<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/4647770f5192c2fb0f5b782d49ebc49f137707b2]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>FnKey</title>
|
||||
@ -222,7 +378,13 @@
|
||||
<guid isPermaLink="false">879641418098ced416f0d630f18b9f49382371e9:FnKey</guid>
|
||||
<pubDate>Sun, 15 Mar 2026 09:11:08 GMT</pubDate>
|
||||
<category>音频和视频</category>
|
||||
<description>Category: 音频和视频<br/>App: FnKey<br/>Description: 按住 Fn 说话并松开即可实时将语音转成文本粘贴出来。<br/>Open Source: https://github.com/evoleinik/fnkey<br/>Commit: Add FnKey to the zh/ja/ko list. #1886<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/879641418098ced416f0d630f18b9f49382371e9</description>
|
||||
<description>Category: 音频和视频
|
||||
App: FnKey
|
||||
Description: 按住 Fn 说话并松开即可实时将语音转成文本粘贴出来。
|
||||
Open Source: https://github.com/evoleinik/fnkey
|
||||
Commit: Add FnKey to the zh/ja/ko list. #1886
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/879641418098ced416f0d630f18b9f49382371e9</description>
|
||||
<content:encoded><![CDATA[Category: 音频和视频<br/>App: FnKey<br/>Description: 按住 Fn 说话并松开即可实时将语音转成文本粘贴出来。<br/>Open Source: https://github.com/evoleinik/fnkey<br/>Commit: Add FnKey to the zh/ja/ko list. #1886<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/879641418098ced416f0d630f18b9f49382371e9]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Awal Terminal</title>
|
||||
@ -230,7 +392,13 @@
|
||||
<guid isPermaLink="false">f7669260f8c62cc280c2b17f52e4809be9e545c8:Awal Terminal</guid>
|
||||
<pubDate>Sun, 15 Mar 2026 01:49:27 GMT</pubDate>
|
||||
<category>开发者工具 / 命令行应用</category>
|
||||
<description>Category: 开发者工具 / 命令行应用<br/>App: Awal Terminal<br/>Description: 支持 AI 组件、多提供商配置、语音输入与 Metal 渲染的 LLM 原生终端模拟器。<br/>Open Source: https://github.com/AwalTerminal/Awal-terminal<br/>Commit: Add Awal Terminal to the ja/ko/zh #1884<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f7669260f8c62cc280c2b17f52e4809be9e545c8</description>
|
||||
<description>Category: 开发者工具 / 命令行应用
|
||||
App: Awal Terminal
|
||||
Description: 支持 AI 组件、多提供商配置、语音输入与 Metal 渲染的 LLM 原生终端模拟器。
|
||||
Open Source: https://github.com/AwalTerminal/Awal-terminal
|
||||
Commit: Add Awal Terminal to the ja/ko/zh #1884
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f7669260f8c62cc280c2b17f52e4809be9e545c8</description>
|
||||
<content:encoded><![CDATA[Category: 开发者工具 / 命令行应用<br/>App: Awal Terminal<br/>Description: 支持 AI 组件、多提供商配置、语音输入与 Metal 渲染的 LLM 原生终端模拟器。<br/>Open Source: https://github.com/AwalTerminal/Awal-terminal<br/>Commit: Add Awal Terminal to the ja/ko/zh #1884<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f7669260f8c62cc280c2b17f52e4809be9e545c8]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Rustcast</title>
|
||||
@ -238,7 +406,13 @@
|
||||
<guid isPermaLink="false">1d091dcc93abdea49740871d0ad87a3d9e37f836:Rustcast</guid>
|
||||
<pubDate>Fri, 13 Mar 2026 07:38:59 GMT</pubDate>
|
||||
<category>其它实用工具 / 效率工具</category>
|
||||
<description>Category: 其它实用工具 / 效率工具<br/>App: Rustcast<br/>Description: 集模式切换、快速启动、文件搜索和剪贴板历史于一体的工作流工具。<br/>Website: https://rustcast.app<br/>Commit: Add Rustcast to the ja/ko/zh #1882<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/1d091dcc93abdea49740871d0ad87a3d9e37f836</description>
|
||||
<description>Category: 其它实用工具 / 效率工具
|
||||
App: Rustcast
|
||||
Description: 集模式切换、快速启动、文件搜索和剪贴板历史于一体的工作流工具。
|
||||
Website: https://rustcast.app
|
||||
Commit: Add Rustcast to the ja/ko/zh #1882
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/1d091dcc93abdea49740871d0ad87a3d9e37f836</description>
|
||||
<content:encoded><![CDATA[Category: 其它实用工具 / 效率工具<br/>App: Rustcast<br/>Description: 集模式切换、快速启动、文件搜索和剪贴板历史于一体的工作流工具。<br/>Website: https://rustcast.app<br/>Commit: Add Rustcast to the ja/ko/zh #1882<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/1d091dcc93abdea49740871d0ad87a3d9e37f836]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Mottie</title>
|
||||
@ -246,7 +420,13 @@
|
||||
<guid isPermaLink="false">8d88c1bb88fb13b4015a22d8d5d9b91040ee5eb6:Mottie</guid>
|
||||
<pubDate>Fri, 13 Mar 2026 02:11:45 GMT</pubDate>
|
||||
<category>设计和产品 / 其它工具</category>
|
||||
<description>Category: 设计和产品 / 其它工具<br/>App: Mottie<br/>Description: 原生 Lottie 动画播放器,支持 dotLottie 文件的快速预览扩展。<br/>Website: https://recouse.me/apps/mottie/<br/>Commit: Add Mottie (#1880)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/8d88c1bb88fb13b4015a22d8d5d9b91040ee5eb6</description>
|
||||
<description>Category: 设计和产品 / 其它工具
|
||||
App: Mottie
|
||||
Description: 原生 Lottie 动画播放器,支持 dotLottie 文件的快速预览扩展。
|
||||
Website: https://recouse.me/apps/mottie/
|
||||
Commit: Add Mottie (#1880)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/8d88c1bb88fb13b4015a22d8d5d9b91040ee5eb6</description>
|
||||
<content:encoded><![CDATA[Category: 设计和产品 / 其它工具<br/>App: Mottie<br/>Description: 原生 Lottie 动画播放器,支持 dotLottie 文件的快速预览扩展。<br/>Website: https://recouse.me/apps/mottie/<br/>Commit: Add Mottie (#1880)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/8d88c1bb88fb13b4015a22d8d5d9b91040ee5eb6]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>TokenMeter</title>
|
||||
@ -254,7 +434,13 @@
|
||||
<guid isPermaLink="false">a05da091d34ec02acb62b384c3a8fc64855e438f:TokenMeter</guid>
|
||||
<pubDate>Fri, 13 Mar 2026 01:27:46 GMT</pubDate>
|
||||
<category>其它实用工具 / 菜单栏工具</category>
|
||||
<description>Category: 其它实用工具 / 菜单栏工具<br/>App: TokenMeter<br/>Description: 在菜单栏跟踪 Claude Code 用量、速率限制、成本与活跃热力图的工具。<br/>Website: https://priyans-hu.github.io/tokenmeter/<br/>Commit: Add TokenMeter to the ja/ko/zh #1881<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/a05da091d34ec02acb62b384c3a8fc64855e438f</description>
|
||||
<description>Category: 其它实用工具 / 菜单栏工具
|
||||
App: TokenMeter
|
||||
Description: 在菜单栏跟踪 Claude Code 用量、速率限制、成本与活跃热力图的工具。
|
||||
Website: https://priyans-hu.github.io/tokenmeter/
|
||||
Commit: Add TokenMeter to the ja/ko/zh #1881
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/a05da091d34ec02acb62b384c3a8fc64855e438f</description>
|
||||
<content:encoded><![CDATA[Category: 其它实用工具 / 菜单栏工具<br/>App: TokenMeter<br/>Description: 在菜单栏跟踪 Claude Code 用量、速率限制、成本与活跃热力图的工具。<br/>Website: https://priyans-hu.github.io/tokenmeter/<br/>Commit: Add TokenMeter to the ja/ko/zh #1881<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/a05da091d34ec02acb62b384c3a8fc64855e438f]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Itsyconnect</title>
|
||||
@ -262,7 +448,13 @@
|
||||
<guid isPermaLink="false">f3f68fbc1d3019f9bf2142480217a07bef5940e6:Itsyconnect</guid>
|
||||
<pubDate>Thu, 12 Mar 2026 13:49:28 GMT</pubDate>
|
||||
<category>开发者工具 / 开发者实用工具</category>
|
||||
<description>Category: 开发者工具 / 开发者实用工具<br/>App: Itsyconnect<br/>Description: 一站式 App Store Connect 管理工具,支持元数据编辑、TestFlight、评论、数据分析与 AI 本地化。<br/>Open Source: https://github.com/nickustinov/itsyconnect-macos<br/>Commit: Add Itsyconnect<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f3f68fbc1d3019f9bf2142480217a07bef5940e6</description>
|
||||
<description>Category: 开发者工具 / 开发者实用工具
|
||||
App: Itsyconnect
|
||||
Description: 一站式 App Store Connect 管理工具,支持元数据编辑、TestFlight、评论、数据分析与 AI 本地化。
|
||||
Open Source: https://github.com/nickustinov/itsyconnect-macos
|
||||
Commit: Add Itsyconnect
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f3f68fbc1d3019f9bf2142480217a07bef5940e6</description>
|
||||
<content:encoded><![CDATA[Category: 开发者工具 / 开发者实用工具<br/>App: Itsyconnect<br/>Description: 一站式 App Store Connect 管理工具,支持元数据编辑、TestFlight、评论、数据分析与 AI 本地化。<br/>Open Source: https://github.com/nickustinov/itsyconnect-macos<br/>Commit: Add Itsyconnect<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f3f68fbc1d3019f9bf2142480217a07bef5940e6]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Usage4Claude</title>
|
||||
@ -270,7 +462,13 @@
|
||||
<guid isPermaLink="false">ba64c2aaa974eeb7d2460c45be19e1876c3069b1:Usage4Claude</guid>
|
||||
<pubDate>Thu, 12 Mar 2026 13:43:42 GMT</pubDate>
|
||||
<category>其它实用工具 / 菜单栏工具</category>
|
||||
<description>Category: 其它实用工具 / 菜单栏工具<br/>App: Usage4Claude<br/>Description: 在菜单栏实时监控 Claude 各类用量配额的工具。<br/>Open Source: https://github.com/f-is-h/Usage4Claude<br/>Commit: Add Usage4Claude<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ba64c2aaa974eeb7d2460c45be19e1876c3069b1</description>
|
||||
<description>Category: 其它实用工具 / 菜单栏工具
|
||||
App: Usage4Claude
|
||||
Description: 在菜单栏实时监控 Claude 各类用量配额的工具。
|
||||
Open Source: https://github.com/f-is-h/Usage4Claude
|
||||
Commit: Add Usage4Claude
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ba64c2aaa974eeb7d2460c45be19e1876c3069b1</description>
|
||||
<content:encoded><![CDATA[Category: 其它实用工具 / 菜单栏工具<br/>App: Usage4Claude<br/>Description: 在菜单栏实时监控 Claude 各类用量配额的工具。<br/>Open Source: https://github.com/f-is-h/Usage4Claude<br/>Commit: Add Usage4Claude<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ba64c2aaa974eeb7d2460c45be19e1876c3069b1]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>ClashX 使用指南</title>
|
||||
@ -278,7 +476,13 @@
|
||||
<guid isPermaLink="false">f8ac156d1fbd319704c65c8f284300a3ba38e867:ClashX 使用指南</guid>
|
||||
<pubDate>Thu, 12 Mar 2026 12:33:36 GMT</pubDate>
|
||||
<category>科学上网</category>
|
||||
<description>Category: 科学上网<br/>App: ClashX 使用指南<br/>Description: ClashX 完整中文教程,包含配置指南、故障排除和性能优化。![Freeware][Freeware Icon]<br/>Website: https://clashx.tech<br/>Commit: Add ClashX Guide to Chinese README (#1876)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f8ac156d1fbd319704c65c8f284300a3ba38e867</description>
|
||||
<description>Category: 科学上网
|
||||
App: ClashX 使用指南
|
||||
Description: ClashX 完整中文教程,包含配置指南、故障排除和性能优化。![Freeware][Freeware Icon]
|
||||
Website: https://clashx.tech
|
||||
Commit: Add ClashX Guide to Chinese README (#1876)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f8ac156d1fbd319704c65c8f284300a3ba38e867</description>
|
||||
<content:encoded><![CDATA[Category: 科学上网<br/>App: ClashX 使用指南<br/>Description: ClashX 完整中文教程,包含配置指南、故障排除和性能优化。![Freeware][Freeware Icon]<br/>Website: https://clashx.tech<br/>Commit: Add ClashX Guide to Chinese README (#1876)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f8ac156d1fbd319704c65c8f284300a3ba38e867]]></content:encoded>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
|
||||
194
feed/feed.xml
194
feed/feed.xml
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
||||
<channel>
|
||||
<title>Awesome Mac - Recent App Additions</title>
|
||||
<link>https://jaywcjlove.github.io/awesome-mac</link>
|
||||
@ -14,7 +14,13 @@
|
||||
<guid isPermaLink="false">bd7eb478d51c6ef17c18cb0274d682531af2fcb3:Atomic Chat</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 13:15:09 GMT</pubDate>
|
||||
<category>AI Client</category>
|
||||
<description>Category: AI Client<br/>App: Atomic Chat<br/>Description: Open-source AI chat client for local LLMs and cloud models with MCP and OpenAI-compatible API support.<br/>Open Source: https://github.com/AtomicBot-ai/Atomic-Chat<br/>Commit: Add Atomic Chat<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bd7eb478d51c6ef17c18cb0274d682531af2fcb3</description>
|
||||
<description>Category: AI Client
|
||||
App: Atomic Chat
|
||||
Description: Open-source AI chat client for local LLMs and cloud models with MCP and OpenAI-compatible API support.
|
||||
Open Source: https://github.com/AtomicBot-ai/Atomic-Chat
|
||||
Commit: Add Atomic Chat
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bd7eb478d51c6ef17c18cb0274d682531af2fcb3</description>
|
||||
<content:encoded><![CDATA[Category: AI Client<br/>App: Atomic Chat<br/>Description: Open-source AI chat client for local LLMs and cloud models with MCP and OpenAI-compatible API support.<br/>Open Source: https://github.com/AtomicBot-ai/Atomic-Chat<br/>Commit: Add Atomic Chat<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bd7eb478d51c6ef17c18cb0274d682531af2fcb3]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Dimly</title>
|
||||
@ -22,7 +28,13 @@
|
||||
<guid isPermaLink="false">1f961ea0dc7c4634ff867de6242f86be0527e944:Dimly</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 08:04:19 GMT</pubDate>
|
||||
<category>Utilities / Menu Bar Tools</category>
|
||||
<description>Category: Utilities / Menu Bar Tools<br/>App: Dimly<br/>Description: Control brightness across mixed monitor setups from a single menu bar app.<br/>Open Source: https://github.com/punshnut/macos-dimly<br/>Commit: Add Dimly - mixed monitor control to app list (#1938)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/1f961ea0dc7c4634ff867de6242f86be0527e944</description>
|
||||
<description>Category: Utilities / Menu Bar Tools
|
||||
App: Dimly
|
||||
Description: Control brightness across mixed monitor setups from a single menu bar app.
|
||||
Open Source: https://github.com/punshnut/macos-dimly
|
||||
Commit: Add Dimly - mixed monitor control to app list (#1938)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/1f961ea0dc7c4634ff867de6242f86be0527e944</description>
|
||||
<content:encoded><![CDATA[Category: Utilities / Menu Bar Tools<br/>App: Dimly<br/>Description: Control brightness across mixed monitor setups from a single menu bar app.<br/>Open Source: https://github.com/punshnut/macos-dimly<br/>Commit: Add Dimly - mixed monitor control to app list (#1938)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/1f961ea0dc7c4634ff867de6242f86be0527e944]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>ClawdHome</title>
|
||||
@ -30,7 +42,13 @@
|
||||
<guid isPermaLink="false">29a8d9fea61d823eca4f0573f2881b38b408e559:ClawdHome</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 07:08:12 GMT</pubDate>
|
||||
<category>AI Client</category>
|
||||
<description>Category: AI Client<br/>App: ClawdHome<br/>Description: Manage multiple isolated OpenClaw gateway instances from one control panel.<br/>Website: https://clawdhome.app/<br/>Commit: Add ClawdHome<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/29a8d9fea61d823eca4f0573f2881b38b408e559</description>
|
||||
<description>Category: AI Client
|
||||
App: ClawdHome
|
||||
Description: Manage multiple isolated OpenClaw gateway instances from one control panel.
|
||||
Website: https://clawdhome.app/
|
||||
Commit: Add ClawdHome
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/29a8d9fea61d823eca4f0573f2881b38b408e559</description>
|
||||
<content:encoded><![CDATA[Category: AI Client<br/>App: ClawdHome<br/>Description: Manage multiple isolated OpenClaw gateway instances from one control panel.<br/>Website: https://clawdhome.app/<br/>Commit: Add ClawdHome<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/29a8d9fea61d823eca4f0573f2881b38b408e559]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>DashVPN</title>
|
||||
@ -38,7 +56,13 @@
|
||||
<guid isPermaLink="false">5f9b05e4fbb3f75f634bf95a0149ef20ce88d392:DashVPN</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 06:34:00 GMT</pubDate>
|
||||
<category>Proxy and VPN Tools</category>
|
||||
<description>Category: Proxy and VPN Tools<br/>App: DashVPN<br/>Description: Simple and free menu bar proxy app for macOS/iOS with smart routing, supporting VLESS, Shadowsocks and HTTPS subscription.<br/>Website: https://getdashvpn.com/<br/>Commit: Add DashVPN - free menu bar proxy app for macOS/iOS (#1939)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5f9b05e4fbb3f75f634bf95a0149ef20ce88d392</description>
|
||||
<description>Category: Proxy and VPN Tools
|
||||
App: DashVPN
|
||||
Description: Simple and free menu bar proxy app for macOS/iOS with smart routing, supporting VLESS, Shadowsocks and HTTPS subscription.
|
||||
Website: https://getdashvpn.com/
|
||||
Commit: Add DashVPN - free menu bar proxy app for macOS/iOS (#1939)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5f9b05e4fbb3f75f634bf95a0149ef20ce88d392</description>
|
||||
<content:encoded><![CDATA[Category: Proxy and VPN Tools<br/>App: DashVPN<br/>Description: Simple and free menu bar proxy app for macOS/iOS with smart routing, supporting VLESS, Shadowsocks and HTTPS subscription.<br/>Website: https://getdashvpn.com/<br/>Commit: Add DashVPN - free menu bar proxy app for macOS/iOS (#1939)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5f9b05e4fbb3f75f634bf95a0149ef20ce88d392]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>ClashBar</title>
|
||||
@ -46,7 +70,13 @@
|
||||
<guid isPermaLink="false">7dec9ecd64368a50a565d99a83104f00a6bdd09d:ClashBar</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 05:23:18 GMT</pubDate>
|
||||
<category>Proxy and VPN Tools</category>
|
||||
<description>Category: Proxy and VPN Tools<br/>App: ClashBar<br/>Description: mihomo-powered menu bar proxy client.<br/>Website: https://clashbar.vercel.app/<br/>Commit: docs: add ClashBar to localized readmes<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7dec9ecd64368a50a565d99a83104f00a6bdd09d</description>
|
||||
<description>Category: Proxy and VPN Tools
|
||||
App: ClashBar
|
||||
Description: mihomo-powered menu bar proxy client.
|
||||
Website: https://clashbar.vercel.app/
|
||||
Commit: docs: add ClashBar to localized readmes
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7dec9ecd64368a50a565d99a83104f00a6bdd09d</description>
|
||||
<content:encoded><![CDATA[Category: Proxy and VPN Tools<br/>App: ClashBar<br/>Description: mihomo-powered menu bar proxy client.<br/>Website: https://clashbar.vercel.app/<br/>Commit: docs: add ClashBar to localized readmes<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7dec9ecd64368a50a565d99a83104f00a6bdd09d]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Repose</title>
|
||||
@ -54,7 +84,13 @@
|
||||
<guid isPermaLink="false">3571b91bcc6398fd79a5b680b1be125dbb417909:Repose</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 02:13:54 GMT</pubDate>
|
||||
<category>Utilities / Productivity</category>
|
||||
<description>Category: Utilities / Productivity<br/>App: Repose<br/>Description: Break reminder for macOS that automatically pauses during meetings.<br/>Open Source: https://github.com/fikrikarim/repose<br/>Commit: Add Repose to Productivity (#1935)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3571b91bcc6398fd79a5b680b1be125dbb417909</description>
|
||||
<description>Category: Utilities / Productivity
|
||||
App: Repose
|
||||
Description: Break reminder for macOS that automatically pauses during meetings.
|
||||
Open Source: https://github.com/fikrikarim/repose
|
||||
Commit: Add Repose to Productivity (#1935)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3571b91bcc6398fd79a5b680b1be125dbb417909</description>
|
||||
<content:encoded><![CDATA[Category: Utilities / Productivity<br/>App: Repose<br/>Description: Break reminder for macOS that automatically pauses during meetings.<br/>Open Source: https://github.com/fikrikarim/repose<br/>Commit: Add Repose to Productivity (#1935)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3571b91bcc6398fd79a5b680b1be125dbb417909]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Flock</title>
|
||||
@ -62,7 +98,13 @@
|
||||
<guid isPermaLink="false">a4ad4b90fe05d473d745ff558a165e0b6dac00f9:Flock</guid>
|
||||
<pubDate>Mon, 30 Mar 2026 01:52:01 GMT</pubDate>
|
||||
<category>Terminal Apps</category>
|
||||
<description>Category: Terminal Apps<br/>App: Flock<br/>Description: Native macOS multiplexer for running multiple Claude Code AI agent sessions in parallel with agent mode, themes, and prompt compression.<br/>Open Source: https://github.com/Divagation/flock<br/>Commit: Add Flock to Terminal Apps (#1936)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/a4ad4b90fe05d473d745ff558a165e0b6dac00f9</description>
|
||||
<description>Category: Terminal Apps
|
||||
App: Flock
|
||||
Description: Native macOS multiplexer for running multiple Claude Code AI agent sessions in parallel with agent mode, themes, and prompt compression.
|
||||
Open Source: https://github.com/Divagation/flock
|
||||
Commit: Add Flock to Terminal Apps (#1936)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/a4ad4b90fe05d473d745ff558a165e0b6dac00f9</description>
|
||||
<content:encoded><![CDATA[Category: Terminal Apps<br/>App: Flock<br/>Description: Native macOS multiplexer for running multiple Claude Code AI agent sessions in parallel with agent mode, themes, and prompt compression.<br/>Open Source: https://github.com/Divagation/flock<br/>Commit: Add Flock to Terminal Apps (#1936)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/a4ad4b90fe05d473d745ff558a165e0b6dac00f9]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>markdown-quicklook</title>
|
||||
@ -70,7 +112,13 @@
|
||||
<guid isPermaLink="false">6f0cbac0aae80f402ed3d21d73a646b9a62a147b:markdown-quicklook</guid>
|
||||
<pubDate>Sun, 29 Mar 2026 12:11:49 GMT</pubDate>
|
||||
<category>QuickLook Plugins</category>
|
||||
<description>Category: QuickLook Plugins<br/>App: markdown-quicklook<br/>Description: Rendered Markdown preview with syntax highlighting, YAML front matter, configurable fonts/colors, and a menu bar toggle to switch between rendered and plain text modes. Build-from-source, one-command install.<br/>Open Source: https://github.com/ruspg/markdown-quicklook<br/>Commit: Add markdown-quicklook to QuickLook Plugins section (#1934)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6f0cbac0aae80f402ed3d21d73a646b9a62a147b</description>
|
||||
<description>Category: QuickLook Plugins
|
||||
App: markdown-quicklook
|
||||
Description: Rendered Markdown preview with syntax highlighting, YAML front matter, configurable fonts/colors, and a menu bar toggle to switch between rendered and plain text modes. Build-from-source, one-command install.
|
||||
Open Source: https://github.com/ruspg/markdown-quicklook
|
||||
Commit: Add markdown-quicklook to QuickLook Plugins section (#1934)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6f0cbac0aae80f402ed3d21d73a646b9a62a147b</description>
|
||||
<content:encoded><![CDATA[Category: QuickLook Plugins<br/>App: markdown-quicklook<br/>Description: Rendered Markdown preview with syntax highlighting, YAML front matter, configurable fonts/colors, and a menu bar toggle to switch between rendered and plain text modes. Build-from-source, one-command install.<br/>Open Source: https://github.com/ruspg/markdown-quicklook<br/>Commit: Add markdown-quicklook to QuickLook Plugins section (#1934)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/6f0cbac0aae80f402ed3d21d73a646b9a62a147b]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>TouchBridge</title>
|
||||
@ -78,7 +126,13 @@
|
||||
<guid isPermaLink="false">8f67d57662e7e7369662d5315c29aa447525bd88:TouchBridge</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 21:05:34 GMT</pubDate>
|
||||
<category>Security Tools</category>
|
||||
<description>Category: Security Tools<br/>App: TouchBridge<br/>Description: Use your phone's fingerprint to authenticate on any Mac. Free alternative to $199 Touch ID keyboard.<br/>Open Source: https://github.com/HMAKT99/UnTouchID<br/>Commit: Add TouchBridge — free Touch ID alternative for Macs without biometric sensor (#1930)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/8f67d57662e7e7369662d5315c29aa447525bd88</description>
|
||||
<description>Category: Security Tools
|
||||
App: TouchBridge
|
||||
Description: Use your phone's fingerprint to authenticate on any Mac. Free alternative to $199 Touch ID keyboard.
|
||||
Open Source: https://github.com/HMAKT99/UnTouchID
|
||||
Commit: Add TouchBridge — free Touch ID alternative for Macs without biometric sensor (#1930)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/8f67d57662e7e7369662d5315c29aa447525bd88</description>
|
||||
<content:encoded><![CDATA[Category: Security Tools<br/>App: TouchBridge<br/>Description: Use your phone's fingerprint to authenticate on any Mac. Free alternative to $199 Touch ID keyboard.<br/>Open Source: https://github.com/HMAKT99/UnTouchID<br/>Commit: Add TouchBridge — free Touch ID alternative for Macs without biometric sensor (#1930)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/8f67d57662e7e7369662d5315c29aa447525bd88]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>VSCodium</title>
|
||||
@ -86,7 +140,13 @@
|
||||
<guid isPermaLink="false">89efdda4fc72bd531bdd7dc25dd7633d00c684b7:VSCodium</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 05:46:23 GMT</pubDate>
|
||||
<category>Developer Tools / IDEs</category>
|
||||
<description>Category: Developer Tools / IDEs<br/>App: VSCodium<br/>Description: Community-driven libre binaries of VS Code.<br/>Website: https://vscodium.com/<br/>Commit: Add VSCodium to the ja/ko/zh list. #1926<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/89efdda4fc72bd531bdd7dc25dd7633d00c684b7</description>
|
||||
<description>Category: Developer Tools / IDEs
|
||||
App: VSCodium
|
||||
Description: Community-driven libre binaries of VS Code.
|
||||
Website: https://vscodium.com/
|
||||
Commit: Add VSCodium to the ja/ko/zh list. #1926
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/89efdda4fc72bd531bdd7dc25dd7633d00c684b7</description>
|
||||
<content:encoded><![CDATA[Category: Developer Tools / IDEs<br/>App: VSCodium<br/>Description: Community-driven libre binaries of VS Code.<br/>Website: https://vscodium.com/<br/>Commit: Add VSCodium to the ja/ko/zh list. #1926<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/89efdda4fc72bd531bdd7dc25dd7633d00c684b7]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>OpenDictation</title>
|
||||
@ -94,7 +154,13 @@
|
||||
<guid isPermaLink="false">c1e98cf4d77c330c0652553d8368de30ddae654b:OpenDictation</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 04:20:12 GMT</pubDate>
|
||||
<category>Voice-to-Text</category>
|
||||
<description>Category: Voice-to-Text<br/>App: OpenDictation<br/>Description: Notch-integrated dictation utility with local Whisper or BYOK cloud transcription and instant cursor insertion.<br/>Open Source: https://github.com/kdcokenny/OpenDictation<br/>Commit: Add OpenDictation to Voice-to-Text list (#1927)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/c1e98cf4d77c330c0652553d8368de30ddae654b</description>
|
||||
<description>Category: Voice-to-Text
|
||||
App: OpenDictation
|
||||
Description: Notch-integrated dictation utility with local Whisper or BYOK cloud transcription and instant cursor insertion.
|
||||
Open Source: https://github.com/kdcokenny/OpenDictation
|
||||
Commit: Add OpenDictation to Voice-to-Text list (#1927)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/c1e98cf4d77c330c0652553d8368de30ddae654b</description>
|
||||
<content:encoded><![CDATA[Category: Voice-to-Text<br/>App: OpenDictation<br/>Description: Notch-integrated dictation utility with local Whisper or BYOK cloud transcription and instant cursor insertion.<br/>Open Source: https://github.com/kdcokenny/OpenDictation<br/>Commit: Add OpenDictation to Voice-to-Text list (#1927)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/c1e98cf4d77c330c0652553d8368de30ddae654b]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Nudge</title>
|
||||
@ -102,7 +168,13 @@
|
||||
<guid isPermaLink="false">e7141d43cf5ff47450fe640f774c0a2f4f059d3e:Nudge</guid>
|
||||
<pubDate>Fri, 27 Mar 2026 03:50:15 GMT</pubDate>
|
||||
<category>Utilities / Window Management</category>
|
||||
<description>Category: Utilities / Window Management<br/>App: Nudge<br/>Description: Free, open-source window manager with keyboard shortcuts and drag-to-edge snapping.<br/>Website: https://nudge.run<br/>Commit: Add Nudge to Window Management section (#1928)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e7141d43cf5ff47450fe640f774c0a2f4f059d3e</description>
|
||||
<description>Category: Utilities / Window Management
|
||||
App: Nudge
|
||||
Description: Free, open-source window manager with keyboard shortcuts and drag-to-edge snapping.
|
||||
Website: https://nudge.run
|
||||
Commit: Add Nudge to Window Management section (#1928)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e7141d43cf5ff47450fe640f774c0a2f4f059d3e</description>
|
||||
<content:encoded><![CDATA[Category: Utilities / Window Management<br/>App: Nudge<br/>Description: Free, open-source window manager with keyboard shortcuts and drag-to-edge snapping.<br/>Website: https://nudge.run<br/>Commit: Add Nudge to Window Management section (#1928)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/e7141d43cf5ff47450fe640f774c0a2f4f059d3e]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Mocker</title>
|
||||
@ -110,7 +182,13 @@
|
||||
<guid isPermaLink="false">0f07144172ed87ddea66917792bd82d7947e775b:Mocker</guid>
|
||||
<pubDate>Thu, 26 Mar 2026 01:01:31 GMT</pubDate>
|
||||
<category>Developer Tools / Virtualization</category>
|
||||
<description>Category: Developer Tools / Virtualization<br/>App: Mocker<br/>Description: Docker-compatible container management tool built natively on Apple's Containerization framework.<br/>Open Source: https://github.com/us/mocker<br/>Commit: Add Mocker - Docker-compatible container CLI for macOS (#1922)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0f07144172ed87ddea66917792bd82d7947e775b</description>
|
||||
<description>Category: Developer Tools / Virtualization
|
||||
App: Mocker
|
||||
Description: Docker-compatible container management tool built natively on Apple's Containerization framework.
|
||||
Open Source: https://github.com/us/mocker
|
||||
Commit: Add Mocker - Docker-compatible container CLI for macOS (#1922)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0f07144172ed87ddea66917792bd82d7947e775b</description>
|
||||
<content:encoded><![CDATA[Category: Developer Tools / Virtualization<br/>App: Mocker<br/>Description: Docker-compatible container management tool built natively on Apple's Containerization framework.<br/>Open Source: https://github.com/us/mocker<br/>Commit: Add Mocker - Docker-compatible container CLI for macOS (#1922)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0f07144172ed87ddea66917792bd82d7947e775b]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>macshot</title>
|
||||
@ -118,7 +196,13 @@
|
||||
<guid isPermaLink="false">7ca42baf8d20b6225fb3aa12a1236e812f9fc9b3:macshot</guid>
|
||||
<pubDate>Wed, 25 Mar 2026 01:45:55 GMT</pubDate>
|
||||
<category>Design and Product / Screenshot Tools</category>
|
||||
<description>Category: Design and Product / Screenshot Tools<br/>App: macshot<br/>Description: Native macOS screenshot and annotation tool inspired by Flameshot, with screen recording, scroll capture, and OCR.<br/>Open Source: https://github.com/sw33tlie/macshot<br/>Commit: Add macshot to Screenshot Tools (#1916)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7ca42baf8d20b6225fb3aa12a1236e812f9fc9b3</description>
|
||||
<description>Category: Design and Product / Screenshot Tools
|
||||
App: macshot
|
||||
Description: Native macOS screenshot and annotation tool inspired by Flameshot, with screen recording, scroll capture, and OCR.
|
||||
Open Source: https://github.com/sw33tlie/macshot
|
||||
Commit: Add macshot to Screenshot Tools (#1916)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7ca42baf8d20b6225fb3aa12a1236e812f9fc9b3</description>
|
||||
<content:encoded><![CDATA[Category: Design and Product / Screenshot Tools<br/>App: macshot<br/>Description: Native macOS screenshot and annotation tool inspired by Flameshot, with screen recording, scroll capture, and OCR.<br/>Open Source: https://github.com/sw33tlie/macshot<br/>Commit: Add macshot to Screenshot Tools (#1916)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/7ca42baf8d20b6225fb3aa12a1236e812f9fc9b3]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>App Uninstaller</title>
|
||||
@ -126,7 +210,13 @@
|
||||
<guid isPermaLink="false">ffcaf60b826240c20afa9d945b4bf748cae483d8:App Uninstaller</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 14:02:42 GMT</pubDate>
|
||||
<category>Utilities / Cleanup and Uninstall</category>
|
||||
<description>Category: Utilities / Cleanup and Uninstall<br/>App: App Uninstaller<br/>Description: Lightweight app uninstaller with drag-and-drop support. Built with Swift and SwiftUI.<br/>Open Source: https://github.com/kamjin3086/AppUninstaller<br/>Commit: Add App Uninstaller to Cleanup and Uninstall section (#1913)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ffcaf60b826240c20afa9d945b4bf748cae483d8</description>
|
||||
<description>Category: Utilities / Cleanup and Uninstall
|
||||
App: App Uninstaller
|
||||
Description: Lightweight app uninstaller with drag-and-drop support. Built with Swift and SwiftUI.
|
||||
Open Source: https://github.com/kamjin3086/AppUninstaller
|
||||
Commit: Add App Uninstaller to Cleanup and Uninstall section (#1913)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ffcaf60b826240c20afa9d945b4bf748cae483d8</description>
|
||||
<content:encoded><![CDATA[Category: Utilities / Cleanup and Uninstall<br/>App: App Uninstaller<br/>Description: Lightweight app uninstaller with drag-and-drop support. Built with Swift and SwiftUI.<br/>Open Source: https://github.com/kamjin3086/AppUninstaller<br/>Commit: Add App Uninstaller to Cleanup and Uninstall section (#1913)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ffcaf60b826240c20afa9d945b4bf748cae483d8]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Claude Usage Monitor</title>
|
||||
@ -134,7 +224,13 @@
|
||||
<guid isPermaLink="false">2f669a63d29ebbe2b3933f21eac34b2082306377:Claude Usage Monitor</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 14:01:22 GMT</pubDate>
|
||||
<category>Utilities / Menu Bar Tools</category>
|
||||
<description>Category: Utilities / Menu Bar Tools<br/>App: Claude Usage Monitor<br/>Description: Menu bar tool for tracking Claude usage with a live counter.<br/>Open Source: https://github.com/theDanButuc/Claude-Usage-Monitor<br/>Commit: Add Claude Usage Monitor to the ja/ko/zh list. #1912<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/2f669a63d29ebbe2b3933f21eac34b2082306377</description>
|
||||
<description>Category: Utilities / Menu Bar Tools
|
||||
App: Claude Usage Monitor
|
||||
Description: Menu bar tool for tracking Claude usage with a live counter.
|
||||
Open Source: https://github.com/theDanButuc/Claude-Usage-Monitor
|
||||
Commit: Add Claude Usage Monitor to the ja/ko/zh list. #1912
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/2f669a63d29ebbe2b3933f21eac34b2082306377</description>
|
||||
<content:encoded><![CDATA[Category: Utilities / Menu Bar Tools<br/>App: Claude Usage Monitor<br/>Description: Menu bar tool for tracking Claude usage with a live counter.<br/>Open Source: https://github.com/theDanButuc/Claude-Usage-Monitor<br/>Commit: Add Claude Usage Monitor to the ja/ko/zh list. #1912<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/2f669a63d29ebbe2b3933f21eac34b2082306377]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Zipic</title>
|
||||
@ -142,7 +238,13 @@
|
||||
<guid isPermaLink="false">74d4d600677a63bef7d165241f1552d4f672df4f:Zipic</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 06:45:35 GMT</pubDate>
|
||||
<category>Design and Product / Other Tools</category>
|
||||
<description>Category: Design and Product / Other Tools<br/>App: Zipic<br/>Description: Batch image compression with custom presets, automated workflows, and integrations with Shortcuts and Raycast.<br/>Website: https://zipic.app/<br/>Commit: Add Zipic to Design and Product - Other Tools (#1910)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/74d4d600677a63bef7d165241f1552d4f672df4f</description>
|
||||
<description>Category: Design and Product / Other Tools
|
||||
App: Zipic
|
||||
Description: Batch image compression with custom presets, automated workflows, and integrations with Shortcuts and Raycast.
|
||||
Website: https://zipic.app/
|
||||
Commit: Add Zipic to Design and Product - Other Tools (#1910)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/74d4d600677a63bef7d165241f1552d4f672df4f</description>
|
||||
<content:encoded><![CDATA[Category: Design and Product / Other Tools<br/>App: Zipic<br/>Description: Batch image compression with custom presets, automated workflows, and integrations with Shortcuts and Raycast.<br/>Website: https://zipic.app/<br/>Commit: Add Zipic to Design and Product - Other Tools (#1910)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/74d4d600677a63bef7d165241f1552d4f672df4f]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Orchard</title>
|
||||
@ -150,7 +252,13 @@
|
||||
<guid isPermaLink="false">0d36dfc922d82a46b83664683364fbef1cfd0243:Orchard</guid>
|
||||
<pubDate>Mon, 23 Mar 2026 06:45:11 GMT</pubDate>
|
||||
<category>AI Client</category>
|
||||
<description>Category: AI Client<br/>App: Orchard<br/>Description: MCP server that bridges AI assistants to native Apple apps like Calendar, Mail, Notes, Reminders, Music, and more.<br/>Website: https://orchard.5km.tech/<br/>Commit: Add Orchard to AI Client (#1911)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0d36dfc922d82a46b83664683364fbef1cfd0243</description>
|
||||
<description>Category: AI Client
|
||||
App: Orchard
|
||||
Description: MCP server that bridges AI assistants to native Apple apps like Calendar, Mail, Notes, Reminders, Music, and more.
|
||||
Website: https://orchard.5km.tech/
|
||||
Commit: Add Orchard to AI Client (#1911)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0d36dfc922d82a46b83664683364fbef1cfd0243</description>
|
||||
<content:encoded><![CDATA[Category: AI Client<br/>App: Orchard<br/>Description: MCP server that bridges AI assistants to native Apple apps like Calendar, Mail, Notes, Reminders, Music, and more.<br/>Website: https://orchard.5km.tech/<br/>Commit: Add Orchard to AI Client (#1911)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/0d36dfc922d82a46b83664683364fbef1cfd0243]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Azex Speech</title>
|
||||
@ -158,7 +266,13 @@
|
||||
<guid isPermaLink="false">5a5d1cd79002acc37b1210fe150b4566d0868c88:Azex Speech</guid>
|
||||
<pubDate>Sun, 22 Mar 2026 04:12:11 GMT</pubDate>
|
||||
<category>Voice-to-Text</category>
|
||||
<description>Category: Voice-to-Text<br/>App: Azex Speech<br/>Description: Mac native voice input for Crypto & AI professionals. Local ASR (FireRedASR), 1800+ domain terms, pronunciation training.<br/>Open Source: https://github.com/azex-ai/speech<br/>Commit: Add Azex Speech to Voice-to-Text section (#1909)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5a5d1cd79002acc37b1210fe150b4566d0868c88</description>
|
||||
<description>Category: Voice-to-Text
|
||||
App: Azex Speech
|
||||
Description: Mac native voice input for Crypto & AI professionals. Local ASR (FireRedASR), 1800+ domain terms, pronunciation training.
|
||||
Open Source: https://github.com/azex-ai/speech
|
||||
Commit: Add Azex Speech to Voice-to-Text section (#1909)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5a5d1cd79002acc37b1210fe150b4566d0868c88</description>
|
||||
<content:encoded><![CDATA[Category: Voice-to-Text<br/>App: Azex Speech<br/>Description: Mac native voice input for Crypto & AI professionals. Local ASR (FireRedASR), 1800+ domain terms, pronunciation training.<br/>Open Source: https://github.com/azex-ai/speech<br/>Commit: Add Azex Speech to Voice-to-Text section (#1909)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/5a5d1cd79002acc37b1210fe150b4566d0868c88]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>NoxKey</title>
|
||||
@ -166,7 +280,13 @@
|
||||
<guid isPermaLink="false">bcef19a8f5391734c9600fbac6ab55c8f5266456:NoxKey</guid>
|
||||
<pubDate>Sun, 22 Mar 2026 04:08:04 GMT</pubDate>
|
||||
<category>Security Tools</category>
|
||||
<description>Category: Security Tools<br/>App: NoxKey<br/>Description: Keychain-based secret manager with Touch ID. Stores API keys and tokens in the macOS Secure Enclave, detects AI agents via process-tree walking, and delivers secrets through encrypted handoff.<br/>Website: https://noxkey.ai<br/>Commit: Add NoxKey to Security Tools (#1907)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bcef19a8f5391734c9600fbac6ab55c8f5266456</description>
|
||||
<description>Category: Security Tools
|
||||
App: NoxKey
|
||||
Description: Keychain-based secret manager with Touch ID. Stores API keys and tokens in the macOS Secure Enclave, detects AI agents via process-tree walking, and delivers secrets through encrypted handoff.
|
||||
Website: https://noxkey.ai
|
||||
Commit: Add NoxKey to Security Tools (#1907)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bcef19a8f5391734c9600fbac6ab55c8f5266456</description>
|
||||
<content:encoded><![CDATA[Category: Security Tools<br/>App: NoxKey<br/>Description: Keychain-based secret manager with Touch ID. Stores API keys and tokens in the macOS Secure Enclave, detects AI agents via process-tree walking, and delivers secrets through encrypted handoff.<br/>Website: https://noxkey.ai<br/>Commit: Add NoxKey to Security Tools (#1907)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/bcef19a8f5391734c9600fbac6ab55c8f5266456]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>ProBoard</title>
|
||||
@ -174,7 +294,13 @@
|
||||
<guid isPermaLink="false">ed5f2436448b72a8cae2f8e01d5a0b5f5f883ba0:ProBoard</guid>
|
||||
<pubDate>Sat, 21 Mar 2026 10:00:10 GMT</pubDate>
|
||||
<category>Utilities / Productivity</category>
|
||||
<description>Category: Utilities / Productivity<br/>App: ProBoard<br/>Description: Use one board to manage all your project information efficiently.[![App Store][app-store Icon]](https://apps.apple.com/app/id6748314346?platform=mac)<br/>App Store: https://apps.apple.com/app/id6748314346?platform=mac<br/>Commit: Add ProBoard to productivity tools list (#1906)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ed5f2436448b72a8cae2f8e01d5a0b5f5f883ba0</description>
|
||||
<description>Category: Utilities / Productivity
|
||||
App: ProBoard
|
||||
Description: Use one board to manage all your project information efficiently.[![App Store][app-store Icon]](https://apps.apple.com/app/id6748314346?platform=mac)
|
||||
App Store: https://apps.apple.com/app/id6748314346?platform=mac
|
||||
Commit: Add ProBoard to productivity tools list (#1906)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ed5f2436448b72a8cae2f8e01d5a0b5f5f883ba0</description>
|
||||
<content:encoded><![CDATA[Category: Utilities / Productivity<br/>App: ProBoard<br/>Description: Use one board to manage all your project information efficiently.[![App Store][app-store Icon]](https://apps.apple.com/app/id6748314346?platform=mac)<br/>App Store: https://apps.apple.com/app/id6748314346?platform=mac<br/>Commit: Add ProBoard to productivity tools list (#1906)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/ed5f2436448b72a8cae2f8e01d5a0b5f5f883ba0]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Lockpaw</title>
|
||||
@ -182,7 +308,13 @@
|
||||
<guid isPermaLink="false">3262420ea5ed4afd16d9c81bb1524c82ca4965f7:Lockpaw</guid>
|
||||
<pubDate>Sat, 21 Mar 2026 01:36:07 GMT</pubDate>
|
||||
<category>Security Tools</category>
|
||||
<description>Category: Security Tools<br/>App: Lockpaw<br/>Description: Menu bar screen guard for macOS — lock and unlock your screen with a hotkey.<br/>Website: https://getlockpaw.com<br/>Commit: Add Lockpaw to Security Tools (#1901)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3262420ea5ed4afd16d9c81bb1524c82ca4965f7</description>
|
||||
<description>Category: Security Tools
|
||||
App: Lockpaw
|
||||
Description: Menu bar screen guard for macOS — lock and unlock your screen with a hotkey.
|
||||
Website: https://getlockpaw.com
|
||||
Commit: Add Lockpaw to Security Tools (#1901)
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3262420ea5ed4afd16d9c81bb1524c82ca4965f7</description>
|
||||
<content:encoded><![CDATA[Category: Security Tools<br/>App: Lockpaw<br/>Description: Menu bar screen guard for macOS — lock and unlock your screen with a hotkey.<br/>Website: https://getlockpaw.com<br/>Commit: Add Lockpaw to Security Tools (#1901)<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/3262420ea5ed4afd16d9c81bb1524c82ca4965f7]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>Redis Insight</title>
|
||||
@ -190,7 +322,13 @@
|
||||
<guid isPermaLink="false">f15cdc15655effd7aadc5db234b9597abe6baa7a:Redis Insight</guid>
|
||||
<pubDate>Sat, 21 Mar 2026 01:35:38 GMT</pubDate>
|
||||
<category>Developer Tools / Databases</category>
|
||||
<description>Category: Developer Tools / Databases<br/>App: Redis Insight<br/>Description: Official Redis tool for browsing, debugging, and visualizing data.<br/>Website: https://redis.io/insight/<br/>Commit: Add Redis Insight fix #1899<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f15cdc15655effd7aadc5db234b9597abe6baa7a</description>
|
||||
<description>Category: Developer Tools / Databases
|
||||
App: Redis Insight
|
||||
Description: Official Redis tool for browsing, debugging, and visualizing data.
|
||||
Website: https://redis.io/insight/
|
||||
Commit: Add Redis Insight fix #1899
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f15cdc15655effd7aadc5db234b9597abe6baa7a</description>
|
||||
<content:encoded><![CDATA[Category: Developer Tools / Databases<br/>App: Redis Insight<br/>Description: Official Redis tool for browsing, debugging, and visualizing data.<br/>Website: https://redis.io/insight/<br/>Commit: Add Redis Insight fix #1899<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/f15cdc15655effd7aadc5db234b9597abe6baa7a]]></content:encoded>
|
||||
</item>
|
||||
<item>
|
||||
<title>DMG Maker</title>
|
||||
@ -198,7 +336,13 @@
|
||||
<guid isPermaLink="false">9a0dfca40df6df056ea648db3a05a2cdafd52510:DMG Maker</guid>
|
||||
<pubDate>Fri, 20 Mar 2026 00:45:38 GMT</pubDate>
|
||||
<category>Developer Tools / Frameworks For Hybrid Applications</category>
|
||||
<description>Category: Developer Tools / Frameworks For Hybrid Applications<br/>App: DMG Maker<br/>Description: DMG creation tool with polished visuals and CLI support.<br/>Open Source: https://github.com/saihgupr/DMGMaker<br/>Commit: Add DMG Maker<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9a0dfca40df6df056ea648db3a05a2cdafd52510</description>
|
||||
<description>Category: Developer Tools / Frameworks For Hybrid Applications
|
||||
App: DMG Maker
|
||||
Description: DMG creation tool with polished visuals and CLI support.
|
||||
Open Source: https://github.com/saihgupr/DMGMaker
|
||||
Commit: Add DMG Maker
|
||||
Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9a0dfca40df6df056ea648db3a05a2cdafd52510</description>
|
||||
<content:encoded><![CDATA[Category: Developer Tools / Frameworks For Hybrid Applications<br/>App: DMG Maker<br/>Description: DMG creation tool with polished visuals and CLI support.<br/>Open Source: https://github.com/saihgupr/DMGMaker<br/>Commit: Add DMG Maker<br/>Commit URL: https://github.com/jaywcjlove/awesome-mac/commit/9a0dfca40df6df056ea648db3a05a2cdafd52510]]></content:encoded>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user