Skip to content

📦 A Scoop bucket, organize some commonly used and user-friendly apps, and enhance Scoop by script. 一个 Scoop bucket,整理一些常用的、使用体验不错的应用,并通过脚本增强 Scoop。

License

Notifications You must be signed in to change notification settings

abgox/abgo_bucket

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

✨ abgo_bucket ✨

English | 简体中文 | Github | Gitee

license code size code size created

For ones familiar with Scoop

  1. scoop bucket add abgo_bucket https://github.com/abgox/abgo_bucket

    • The abgo_bucket here is the name of the bucket added locally, you can name it freely.
  2. Install apps.

    • scoop install [abgo_bucket/]<app_name>

    • Use an external way to download/update app:

      • It's good choice to use it when downloads the app in the command line are slow and you have better ways to download the app by the download link.
          <your_scoop_path>\bucket\abgo_bucket\bin\download.ps1 [bucket/]<app_name>
  • List all installable apps in abgo_bucket:

    <your_scoop_path>\bucket\abgo_bucket\bin\list_all_app.ps1

Never used Scoop


Why create abgo_bucket

  1. When using official or third-party buckets, there may be the following issues.

    • Some apps doesn't persist data.(Don't include apps that do not necessarily persist data.)
      • abgo_bucket uses soft link to persist data, which is not limited to data in app directories, including app data under directories such as $env:AppData and $env:LocalAppData.
    • After uninstalling app, local data was not cleaned up. (e.g. the app's data under $env:AppData,$env:LocalAppData or other directory.)
      • When the app in abgo_bucket is uninstalled, all related app data will be deleted, and only the data in the persist directory will be retained.
      • If you use the -p/--purge parameter when uninstalling, the data in the persist directory will also be deleted.
    • When uninstalling app, there's a problem where the process is occupied and cannot be uninstalled.
      • When the app in abgo_bucket is running, using the scoop uninstall <app_name> will try to terminate the process before uninstalling, to avoid the problem that the software is in use and cannot be uninstalled.
    • App installation is limited to unpacking and obtaining the app directory. Some files/libraries/registries may be missing.
      • When the app in abgo_bucket is installing, If the exe installation can be run, it will be run silently to ensure the integrity of the app directory after installing.
      • When it's uninstalling, the built-in uninstaller of the app will be used first to uninstall.
    • ...
  2. Organize some commonly used apps with good user experience.


About App Update

  • When updating the application with scoop update, the old version of the directory is now retained by default.
    • Note: If the current app uses the app's own uninstaller, the uninstaller will be executed when updating and will not retain the old version directory.
  • If old version directory exists, you can reset it to the specified installed version by scoop reset app@version.
  • If you want old version directory to be removed when updating, you can add the Scoop configuration by running the following command.
    • scoop config abgo_bucket_no_old_version true

About persist

  • The apps in abgo_bucket will uses New-Item -ItemType SymbolicLink to persist data, which is not limited to data in app directories.

    • The linked data files and directories are not necessarily in the scoop directory.
    • If you reinstall your system or copy the scoop directory to another computer, please reinstall the application to ensure that the data files or directories are linked to the application data in the persist directory.
  • The strategy is radical. If there is a data directory, the app will persist the entire data directory instead of some important configuration files.

  • Take Neovim as an example. It will form two directories under $env:LocalAppData, nvim and nvim-data, and both directories will be persisted.

    • The advantage of it is that the software has a smooth and seamless user experience after reinstalling, but it may take up more storage space.
  • This radical persist strategy will result in abgo_bucket having a different persist file (directory) than other buckets.

  • So, if you are migrating from another bucket to abgo_bucket or from abgo_bucket to another repository, please pay attention to the changes in the persist.

⚠︎ About persist directory changes ⚠︎

  • On January 15, 2024, there're some changes in the persist of some apps. Click to view this commit.
  • List: Final2x,GeekUninstaller,Helix,LX-Music,Listary,MarkText,Motrix,MusicPlayer2,ngrok,Oh-My-Posh,Quicker,Rubick,RustDesk,ScreenToGif,Sigma-File-Manager,TrafficMonitor,tts-vue,Typora,XBYDriver
    • Taking GeekUninstaller as an example:
      • Before: <your_scoop_path>\persist\geekuninstaller
      • After: <your_scoop_path>\persist\geekuninstaller\Geek Uninstaller

About Shortcut

  • By default, apps in abgo_bucket automatically create desktop shortcuts when installing and updating.
  • You can disable the creation of desktop shortcuts by running the following command to add the Scoop configuration.
    • scoop config abgo_bucket_no_shortcut true

About Confirm

  • The app with a Confirm tag in App Manifests requires user confirmation in one or more of the following situations to avoid some problems.
    1. When uninstalling an app, the uninstaller cannot completely stop the app process due to some special situations.
    2. After uninstalling the app, the explorer.exe will be restarted.
  • So, the installation and uninstallation of app cannot be completely silent and automatic.
  • But, You can avoid user confirmation by running the following command to add the Scoop configuration.
    • scoop config abgo_bucket_no_confirm true

About UAC

  • The scripts in the bin directory will be elevated to administrator permission under some cases to ensure that they run properly.
  • A UAC authorization window will appear requiring user confirmation.
  • If you don't want to be bothered by the UAC authorization window to achieve complete silent automation, you should find ways to avoid it.
    1. Start the command line with administrator permission.
    2. Modify User Account Control in system Settings.
    3. ...

App Manifests

  • All app Manifests are supported by default:

    • Clear Data : When the software is uninstalled, delete data of the software if it exists.(Except for persist data).
    • Forced uninstall : When the software is running, using the scoop uninstall <app_name> will try to terminate the process before uninstalling, to avoid the problem that the software is in use and cannot be uninstalled.
  • Guide

    • App : Click to view to the official website or repository. Sort by first letter(0-9,a-z).
    • Persist : Important data of software is saved to persist under the installation directory of "Scoop".
      • ✔️ : It has been done.
      • : It hasn't been done yet.
      • : It's not necessary, or the conditions are not meet.(e.g. data file not found)
    • Tag
      • Font: A font.
        • Administrator permission are frequently used during the installation of fonts.
        • Reference: About UAC
      • PSModule: A PowerShell Module.
      • Confirm : The app has a command line(or uninstaller) interactive confirmation when uninstalling.
      • NoAutoUpdate : json.autoupdate are not configured, and Scoop cannot automatically detect updates.
    • Description: App Description.

App Persist Tag Description
123pan ✔️ 123 云盘,一款云存储服务产品。
A cloud storage service product.
1History 一款命令行工具,可将不同的浏览器历史记录备份到一个文件中,并将其可视化。
A command line tool to backup your different browser histories into one file, and visualize them.
7zip Confirm 具有高压缩比的多格式文件归档器。
A multi-format file archiver with high compression ratios.
aardio ✔️ 灵活而强大的动态语言。
A flexible and powerful dynamic language.
AdsPower ✔️ 一个指纹浏览器。
A No anti-detection browser
AFFINE ✔️ 下一代知识库,集规划、分类和创建于一体。隐私第一、开源、可定制、随时可用。
A next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, open-source, customizable and ready to use.
aliyunDrive ✔️ 一款速度快、不打扰、够安全、易于分享的网盘,你可以在这里存储、管理和探索内容,尽情打造丰富的数字世界。
A fast, non-intrusive, secure and easy-to-share personal netdisk where you can store, manage and explore things, and build a flourishing digital world.
Apifox ✔️ API 设计、开发、测试一体化协作平台。
All-in-one collaboration platform for API documentation, API debugging, API Mock and API test automation.
AppFlowy ✔️ 一个开源的 Notion 替代品。
An open-source alternative to Notion.
AutoHotkey ✔️ 适用于 Windows 的终极自动化脚本语言。
The ultimate automation scripting language for Windows.
BaiduNetdisk ✔️ 百度网盘。
Baidu Netdisk for windows.
BaiduTranslate ✔️ 轻·快的多语种翻译工具。
A fast and lightweight multilingual translation tool.
Bilibili ✔️ 哔哩哔哩 Windows 客户端
BitMeterOS 一个带命令行的网络监控工具。
A networking monitoring with command line tool.
Bruno ✔️ 一个快速且 Git 友好的开源 API 客户端。
A Fast and Git-Friendly OpenSource API client.
Carnac ✔️ 一个可以帮助您了解键盘使用方式的实用程序。
A utility to give some insight into how you use your keyboard.
Chatbox ✔️ 一个可使用 ChatGPT、Claude 和其他 LLM 的桌面客户端。
A desktop client for ChatGPT, Claude and other LLMs.
chfs ✔️ 一个免费的http服务器文件共享工具,通过局域网实现文件传输。
A free file sharing http server tool.
CLion ✔️ 由 JetBrains 开发的适用于 C 和 C++ 的跨平台集成开发环境。
Cross-Platform IDE for C and C++ by JetBrains.
CloudMusic ✔️ 网易旗下的音乐平台,同时也是业内领先的音乐社区。
It's NetEase's music platform, and it's also the industry's leading music community.
ContextMenuManager ✔️ 🖱️ 纯粹的 Windows 右键菜单管理程序。
A pure Windows context menu manager.
coriander_player ✔️ Windows 端本地音乐播放器。
Local music player for Windows.
Cursor ✔️ 人工智能优先的代码编辑器。
The AI-first Code Editor.
DataGrip ✔️ 由 JetBrains 提供的一款处理多种数据库的工具。
A tool to handle with many databases by JetBrains.
DataSpell ✔️ 由 JetBrains 提供的一款工具,轻松地将数据转化为见解。
A tool to turn data into insights with ease by JetBrains.
DevToys ✔️ 开发人员的瑞士军刀。
A Swiss Army knife for developers.
Ditto ✔️ 一个 Windows 剪贴板的扩展工具。
An extension to the Windows Clipboard.
Dnest Windows 系统上的文件暂存工具,类似 MacOs 上的 Yoink。
A file staging tool for Windows systems, similar to Yoink for MacOs.
DouYin ✔️ 抖音,一个短视频平台。
DownKyi ✔️ 一个B站(bilibili)视频下载工具。
A bilibili video download tool.
draw.io ✔️ 一款专业的绘图工具。
Professional diagramming.
Dropit ✔️ 一个可以自动管理文件的工具。
Personal assistant to automatically manage your files.
Escrcpy ✔️ 使用图形化的 Scrcpy 显示和控制您的 Android 设备,由 Electron 驱动。
Graphical Scrcpy to display and control Android, devices powered by Electron.
Everything ✔️ 文件搜索工具,基于名称快速定位文件和文件夹。
Locate files and folders by name instantly.
FastGithub github加速神器,解决github打不开、用户头像无法加载、releases无法上传下载、git-clone、git-pull、git-push失败等问题
FeiShu ✔️ 字节跳动旗下先进企业写协作与管理平台,一站式无缝办公协作。
Empowering teams by messenger, meetings, calendar, docs, and emails. It's all in one place.
Final2x ✔️ 2^x图像超分辨率,一个开源的、强大的跨平台图像超分辨率工具。
2^x Image Super-Resolution.
FishingFunds ✔️ 基金,大盘,股票,虚拟货币状态栏显示小应用,基于 Electron 开发,数据源来自天天基金,蚂蚁基金,爱基金,腾讯证券等
Flow-Launcher ✔️ 适用于 Windows 的快速文件搜索和应用程序启动器。
Quick file searcher and app launcher with community-made plugins
Fluent-Search ✔️ 使用它,你可以搜索正在运行的应用程序、浏览器标签、应用程序内内容、文件等。
With it, you can search for running apps, browser tabs, in-app content, files and more.
fnm 快速、简单的 Node.js 版本管理器,采用 Rust 内建。
Fast and simple Node.js version manager, built in Rust.
Fonger ✔️ 方格音乐,一款音乐播放器
Font-Hack Font Hack 字体,Nerd Font 系列。
Nerd Fonts patched 'Hack' Font family.
FSViewer ✔️ FastStone Image Viewer 是一款快速、稳定、用户友好的图像浏览器、转换器和编辑器。
FastStone Image Viewer is a fast, stable, user-friendly image browser, converter and editor.
GeekUninstaller ✔️ 非常好用的免费卸载程序。
The good free uninstaller.
GitExtensions ✔️ 一个独立的 Git UI 工具去管理 Git 仓库。
A standalone UI tool for managing git repositories.
GoLand ✔️ 由 JetBrains 开发的 Go 语言的跨平台集成开发环境。
Cross-Platform IDE for Golang by JetBrains.
Gopeed ✔️ 一款支持所有平台的现代下载管理器。使用 Golang 和 Flutter 构建。
A modern download manager that supports all platforms. Built with Golang and Flutter.
HBuilderX ✔️ DCloud 旗下的代码编辑器。
A code editor by DCloud.
He3 ✔️ 一个免费、现代化的工具箱,为开发人员打造。
A Free, Modern Toolbox, Built for Developers.
Helix ✔️ 后现代文本编辑器。
A post-modern modal text editor.
Heynote ✔️ 为开发人员提供的专用便签本。
A dedicated scratchpad for developers.
hummingbird ✔️ 一个图片压缩程序 (jpg/png/webp/svg/gif/css/js/html/mp4/mov),它可以转换不同格式的图片。
A compression (jpg/png/webp/svg/gif/css/js/html/mp4/mov) App, it can convert different format pictures.
Hydrogen-Music ✔️ 仿明日方舟工业风音乐播放器,支持添加曲绘
Hyper ✔️ 一个基于 Web 技术构建的终端。
A terminal built on web technologies.
Idea ✔️ 由 JetBrains 开发的适用于 Java 和 Kotlin 开发的 IDE。
Cross-Platform IDE for Java and Kotlin by JetBrains.
IdeaCE ✔️ 社区版 - 由 JetBrains 开发的适用于 Java 和 Kotlin 开发的 IDE。
Community Edition - Cross-Platform IDE for Java and Kotlin by JetBrains.
ImageGlass ✔️ 一个轻量级的、多功能的图像查看器。
A lightweight, versatile image viewer.
InputTip ✔️ 一个小工具,根据当前输入法中英文状态切换光标样式。
A small tool to switch the cursor style according to the current state of the input method in English and Chinese.
Insomnia ✔️ 适用于 GraphQL、REST、WebSockets、SSE 和 gRPC 的开源跨平台 API 客户端。支持云存储、本地存储和 Git 存储。
The open-source, cross-platform API client for GraphQL, REST, WebSockets, SSE and gRPC. With Cloud, Local and Git storage.
jan ✔️ ChatGPT 的开源替代品,可在计算机上百分百脱机运行。
An open source alternative to ChatGPT that runs 100% offline on your computer.
Joplin ✔️ 一个安全的记事和待办事项应用程序,具有同步功能,适用于 Windows、macOS、Linux、Android 和 iOS。
A secure note taking and to-do app with syncing capabilities for Windows, macOS, Linux, Android and iOS.
Keyviz ✔️ 一个免费的开源工具来可视化你的击键 ⌨️ 和 🖱️ 鼠标实时动作。
A free and open-source tool to visualize your keystrokes ⌨️ and 🖱️ mouse actions in real-time.
Knotes ✔️ 高效全能的读书笔记管理工具,读书爱好者的最佳读书伴侣。
An efficient reading notes management tool for bookworms.
Koodo-Reader ✔️ 一款现代电子书管理器和阅读器,具有同步和备份功能,适用于 Windows、macOS、Linux 和 Web。
A modern ebook manager and reader with sync and backup capacities for Windows, macOS, Linux and Web.
KuGouMusic ✔️ 酷狗音乐
Lark ✔️ 无缝衔接的团队工作工具。
Essential Work Tools, Seamless Connection
Lattics ✔️ 「类脑式」知识管理笔记与写作。
"Brain-like" Knowledge Management Notes.
Listary ✔️ 一个革命性的 Windows 搜索工具。
A revolutionary search utility for Windows.
LocalSend ✔️ 将文件共享到附近的设备。免费、开源、跨平台。
Share files to nearby devices. An open source cross-platform alternative to AirDrop.
LX-Music ✔️ 一个基于 electron 的音乐软件。
An electron-based music player.
Mailpit 为开发人员提供的带有应用程序接口的电子邮件和 SMTP 测试工具。
An email and SMTP testing tool with API for developers.
Manuskript 一个面向作家的开源工具。
A open-source tool for writers.
MarkLion ✔️ 部署在企业私有服务器的快捷高效设计协作平台,助力团队提升协作效率、保障产品数据安全与私密。
MarkText ✔️ 一个简单优雅的 MarkDown 编辑器,可用于 Linux、macOS 和 Windows。
A simple and elegant markdown editor, available for Linux, macOS and Windows.
MediaElch ✔️ Kodi 的媒体管理器。
Media Manager for Kodi.
Monit ✔️ 🎯桌面小组件。
Desktop Widget.
Motrix ✔️ 一个全功能的下载器。
A full-featured download manager.
mpv ✔️ 一个免费的、开源的、跨平台的媒体播放器。
A free, open source, and cross-platform media player
MusicBee ✔️ 音乐播放器,可轻松管理、查找和播放音乐、播客、网络广播电台等。
The ultimate music player to easily manage, find, and play music, podcasts, web radio stations, etc
MusicPlayer2 ✔️ 一款集音乐播放、歌词显示、格式转换等众多功能于一身的音频播放软件。
Audio player which supports music collection playback, lyrics display, format conversion and many other functions.
Neovim ✔️ 一个旨在重构 Vim 的文本编辑器项目。
A project that seeks to aggressively refactor Vim.
ngrok ✔️ 一个命令用于通过任何 NAT 或防火墙向本地主机服务器提供即时、安全的 URL,即内网穿透。
Spend more time programming. One command for an instant, secure URL to your localhost server through any NAT or firewall.
Noi ✔️ 人工智能助力你的世界 —— 探索、扩展、赋能。
Power Your World with AI - Explore, Extend, Empower.
NotepadNext ✔️ Notepad++ 的跨平台重新实现。
A cross-platform, reimplementation of Notepad++
Notepads ✔️ 一款设计简约的现代轻量级文本编辑器。
A modern, lightweight text editor with a minimalist design.
nvm-desktop ✔️ 一个用于管理多个活动 node.js 版本的桌面应用程序。
A desktop application to manage multiple active node.js versions.
OBS-Studio ✔️ 用于视频录制和直播的免费开源软件。
Free and open source software for video recording and live streaming.
Obsidian ✔️ 强大的知识库,基于 Markdown 文件。
Powerful knowledge base that works on top of a local folder of plain text Markdown files.
Oh-My-Posh ✔️ 任何 shell 的提示主题引擎。
A prompt theme engine for any shell.
PDFgear ✔️ 一款功能齐全的 PDF 管理软件。
A piece of full-featured PDF management software.
PeaZip ✔️ 一个基于开放源码技术的免费文件归档(压缩)实用程序。
A free file archiver utility, based on Open Source technologies.
PhpStorm ✔️ 由 JetBrains 开发的适用于 PHP 的跨平台集成开发环境。
Cross-Platform IDE for PHP by JetBrains.
PicGo ✔️ 由 vue-cli-electron-builder 构建的简洁美观的图片上传工具。
A simple & beautiful tool for pictures uploading built by vue-cli-electron-builder.
PixPin ✔️ 功能强大使用简单的截图/贴图工具,帮助你提高效率。
A powerful screenshot tool.
PixPinBeta ✔️ (Beta 版本) 功能强大使用简单的截图/贴图工具,帮助你提高效率。
(Beta version) A powerful screenshot tool.
Postman ✔️ 一个完整的API开发环境。
Complete API development environment.
Pot ✔️ 一个跨平台的划词翻译和OCR软件。
A cross-platform software for text translation and recognition.
PotPlayer ✔️ 高度可定制的媒体播放器。
Highly customizable media player.
PSCompletions ✔️ PSModule 一个补全管理模块,更简单、更方便的使用 PowerShell 命令补全。
A completion manager for better and simpler use PowerShell completions.
PyCharm ✔️ 由 JetBrains 开发的适用于纯 Python 开发的 IDE。
Cross-Platform IDE for Python by JetBrains.
PyCharmCE ✔️ 社区版 - 由 JetBrains 开发的适用于纯 Python 开发的 IDE。
Community Edition - Cross-Platform IDE for Python by JetBrains.
pyenv-win ✔️ windows 下的 pyenv,一个简单的 python 版本管理工具。
pyenv for Windows. pyenv is a simple python version management tool.
QQ ✔️ (NT版本) 一款能让你与你的朋友和家人保持联系的即时通讯工具。
(NT version) An instant messaging tool that gives you the best way to keep in touch with your friends and family.
QQBrowser ✔️ 腾讯官方出品,基于 Chromium 内核开发,启动速度、打开网页速度更快的浏览器。
Tencent's official Chromium-based browser with faster startup and web page opening speed.
QtScrcpy ✔️ 通过TCP/IP或USB显示和控制Android设备。
Display and control Android device via TCP/IP or USB.
Quicker ✔️ 指尖工具箱, Windows 效率工具
Raptor ✔️ 第三方阿里云盘桌面应用客户端
Recyclarr 一个命令行应用程序,可自动将 TRaSH 指南中的推荐设置同步到 Sonarr/Radarr 实例。
A command-line application that will automatically synchronize recommended settings from the TRaSH guides to your Sonarr/Radarr instances.
Rider ✔️ 由 JetBrains 开发的适用于 .NET 的跨平台集成开发环境。
Cross-Platform IDE for .NET by JetBrains.
Rime ✔️ Confirm 一个跨平台的开源输入法,Windows 中叫小狼毫。
A cross-platform open source input method. It's called weasel on Windows.
Rubick ✔️ 基于 electron 的开源工具箱,自由集成丰富插件。
Electron based open source toolbox, free integration of rich plug-ins.
RubyMine ✔️ 由 JetBrains 开发的适用于 Ruby 和 Rails 的跨平台集成开发环境。
Cross-Platform IDE for Ruby and Rails by JetBrains.
RunCat 一个 windows 任务栏上的可爱的奔跑猫动画。
A cute running cat animation on your windows taskbar.
RustDesk ✔️ 一个安全的远程桌面访问工具,用 Rust 语言编写。
An open-source remote desktop software, written in Rust.
Screego ✔️ 开发人员屏幕共享。
Screen sharing for developers.
ScreenToGif ✔️ 该工具可让您录制屏幕的选定区域、网络摄像头的实时画面或草图板上的实时绘图。之后,您可以编辑动画并将其保存为 gif、apng、视频、psd 或 png 图像。
This tool allows you to record a selected area of your screen, live feed from your webcam or live drawings from a sketchboard. Afterward, you can edit and save the animation as a gif, apng, video, psd or png image.
Sigma-File-Manager ✔️ 一款免费、开源、快速发展的现代文件管理器。
A free, open-source, quickly evolving, modern file manager (explorer / browser) app.
SimpleMindMap ✔️ 一个相对强大的Web思维导图。
A relatively powerful web mind map.
SimplyListenMusic ✔️ 一个阿里云盘音乐播放器,它可以读取阿里云盘内的音乐来进行播放。 用户可以创建并同步歌单,播放时可以读取歌曲标签信息,还支持读取内嵌歌词/外置歌词。
SiYuan ✔️ 一款隐私优先的个人知识管理系统,支持完全离线使用,同时也支持端到端加密同步。融合块、大纲和双向链接,重构你的思维。
A privacy-first personal knowledge management system that supports complete offline usage, as well as end-to-end encrypted data sync. Fuse blocks, outlines, and bidirectional links to refactor your thinking.
Snipaste ✔️ 一个剪切工具,可以让你把截图固定在屏幕上。
A snipping tool, which allows you to pin the screenshot back onto the screen.
Snipaste2 ✔️ 一个剪切工具,可以让你把截图固定在屏幕上。
A snipping tool, which allows you to pin the screenshot back onto the screen.
SodaMusic ✔️ 抖音官方出品音乐 App。
DouYin's official music App.
Spacedrive ✔️ 一个开源的跨平台文件浏览器,由一个用 Rust 编写的虚拟分布式文件系统提供支持。
An open source cross-platform file explorer, powered by a virtual distributed filesystem written in Rust.
Starship ✔️ 适用于任何 shell 的最简洁、快速且可定制的提示符。
The minimal, blazing fast, and extremely customizable prompt for any shell!
Steampp ✔️ 一个开源跨平台的多功能 Steam 工具箱,它有另一个名字: "Watt Toolkit"。
A toolbox with lots of Steam tools. Its other name is "Watt Toolkit".
StrokesPlus.net ✔️ 适用于 Windows 的鼠标手势识别实用程序,可让您创建强大的鼠标手势,从而节省您的时间。
Mouse gesture recognition utility for Windows which allows you to create powerful mouse gestures that save you time.
SublimeText ✔️ 一个文本编辑器。
A text editor.
superProductivity ✔️ 一个先进的待办事项列表应用程序,集成了时间盒和时间跟踪功能。它还集成了 Jira、Gitlab、GitHub 和 Open Project。
An advanced todo list app with integrated Timeboxing and time tracking capabilities. It also comes with integrations for Jira, Gitlab, GitHub and Open Project.
SwitchHosts ✔️ 一个管理、切换多个 hosts 方案的工具,快速切换 hosts!An App for hosts management & switching.Switch hosts quickly!
SyncBackFree ✔️ 可免费用于个人、教育、慈善、政府和商业用途的 Windows 备份软件。
Windows Backup Software that is free for personal, educational, charity, government, and commercial use.
Thunderbird-CN ✔️ 一款易于设置和定制的免费电子邮件应用程序。
A free email application that’s easy to set up and customize.
Thunderbird ✔️ 一款易于设置和定制的免费电子邮件应用程序。
A free email application that’s easy to set up and customize.
TinyRDM ✔️ 一款现代轻量级跨平台 Redis 桌面管理器。
A modern lightweight cross-platform Redis Desktop Manager.
TrafficMonitor ✔️ Confirm Windows 上的网络监控窗口软件。可显示当前网速/CPU/内存使用情况。支持嵌入任务栏/主题更改/流量统计。
Network monitoring floating window software on Windows. It can display the current network speed, CPU and memory usage. It also supports being embedded into the taskbar, theme changing and traffic statistics.
TranslucentTB ✔️ 一个轻量级的实用程序,使 Windows 任务栏半透明/透明。
A lightweight utility that makes the Windows taskbar translucent/transparent.
TTime ✔️ 一款简洁、高效、高颜值的输入、截图、划词翻译软件。
A concise, efficient, and high-quality input, screenshot, and word translation software.
tts-vue ✔️ 🎤 微软语音合成工具,使用 Electron + Vue + ElementPlus + Vite 构建。
🎤 Microsoft speech synthesis tool, built using Electron + Vue + ElementPlus + Vite.
Typora ✔️ 一个 Markdown 编辑器和阅读器,所见即所得。
A minimal Markdown editor and reader.
TyporaFree ✔️ (Beta Free 版本) 一个 Markdown 编辑器和阅读器,所见即所得。
(Beta Free Version) A minimal Markdown editor and reader.
uncle-novel ✔️ 一个全网小说下载器及阅读器,目录解析与书源结合,支持有声小说与文本小说,可下载 mobi、epub、txt 格式文本小说。
Uninstalr 一个用于在 Windows 中快速、轻便、准确地卸载软件的应用程序。
A fast, lightweight and accurate way to uninstall software in Windows.
Upscayl ✔️ 适用于 Linux、MacOS 和 Windows 的免费开源 AI 图像升级程序,秉承 Linux 优先的理念。
Free and Open Source AI Image Upscaler for Linux, MacOS and Windows built with Linux-First philosophy.
uTools ✔️ 新一代效率工具平台,自由组合插件应用,打造专属你的趁手工具集。
version-manager ✔️ 支持各种语言,无需插件,无需记忆命令,最好用的SDK版本管理器。
A general version manager for 60+ SDKs with TUI inspired by lazygit. No need to remember any commands.
VLC ✔️ 一款自由、开源的跨平台多媒体播放器及框架,可播放大多数多媒体文件,以及 DVD、音频 CD、VCD 及各类流媒体协议。
A free and open source cross-platform multimedia player and framework that plays most multimedia files as well as DVDs, Audio CDs, VCDs, and various streaming protocols.
VovStickyNotes ✔️ 创建数字贴纸和提醒事项。
Creates digital stickers and reminders
VSCode ✔️ 一个轻量级、功能强大,插件生态丰富的文件编辑器。
Lightweight but powerful source code editor.
WasmEdge 一款轻量级、高性能和可扩展的 WebAssembly 运行时,适用于云原生、边缘和去中心化应用。它为无服务器应用程序、嵌入式功能、微服务、智能合约和物联网设备提供支持。
A lightweight, high-performance, and extensible WebAssembly runtime for cloud native, edge, and decentralized applications. It powers serverless apps, embedded functions, microservices, smart contracts, and IoT devices.
WebStorm ✔️ 由 JetBrains 开发的 JavaScript 和 TypeScript 的跨平台集成开发环境。
Cross-Platform IDE for JavaScript and TypeScript by JetBrains.
WeChat ✔️ 一款跨平台的通讯工具。支持单人、多人参与。通过手机网络发送语音、图片、视频和文字。
A free messaging and calling app. Enjoy group chats that support voice and video calls, photos, videos, and stickers.
WeekToDo ✔️ 一个免费和开源的极简每周计划和待办事项应用程序,专注于隐私。
A free and open source minimalist weekly planner and To Do list App focused on privacy.
Widgets ✔️ 功能强大、符合人体工程学的 Windows 桌面组件系统,使用 Vue 构建。
Desktop widgets for windows. built with vue3.
WinRAR-CN ✔️ 一款功能强大的存档器(RAR 和 ZIP)和解压工具,可打开所有流行的文件格式。
A powerful archiver (RAR and ZIP) and extractor tool that can open all popular file formats.
WinRAR ✔️ 一款功能强大的存档器(RAR 和 ZIP)和解压工具,可打开所有流行的文件格式。
A powerful archiver (RAR and ZIP) and extractor tool that can open all popular file formats.
WiseCare365 ✔️ Confirm Windows 系统清理和加速工具。
Free Windows PC Cleaner and Speed up Tool
WonderPen ✔️ 一款专业的写作软件,致力于为作者提供专注且流畅的写作体验。
A professional writing software dedicated to providing writers with a focused and smooth writing experience.
Writeathon ✔️ 一款写作产品,为创作者提供丰富的灵感和完善的流程。
A product for writing, providing the flow and inspiration creators need to make content.
XBYDriver ✔️ 小白羊网盘 - Powered by 阿里云盘
XYplorer ✔️ 一个 Windows 上的第三方文件管理器。
A file manager for Windows.
XYplorerFree ✔️ NoAutoUpdate (Free 版本) 一个 Windows 上的第三方文件管理器。
(Free version) A file manager for Windows.
YouDaoTranslate ✔️ Confirm 网易有道翻译。
YouDaoTranslate for windows.
YuQue ✔️ 为每一个人,为每一个团队,提供优秀的文档与知识库工具。
Provide excellent documentation and knowledge base tools for everyone and every team.
Z-Library ✔️ Z-Library——世界上最大的电子书图书馆。
Z-Library – the world’s largest e-book library.
Zotero ✔️ Open-source reference management software to manage bibliographic data and related research materials.

About

📦 A Scoop bucket, organize some commonly used and user-friendly apps, and enhance Scoop by script. 一个 Scoop bucket,整理一些常用的、使用体验不错的应用,并通过脚本增强 Scoop。

Topics

Resources

License

Stars

Watchers

Forks