# momo-docs
**Repository Path**: momomomowei/momo-docs
## Basic Information
- **Project Name**: momo-docs
- **Description**: momo的笔记仓库
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2025-05-21
- **Last Updated**: 2026-03-20
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# 浏览器插件
| 插件名称 | 描述 |
| ------------------------------------ | ------------------------------ |
| Adblock Plus - 免费的广告拦截器 | 广告拦截器 |
| uBlock Origin Lite | 广告拦截器 |
| Infinity 新标签页 (Pro) | 广告拦截器 |
| FeHelper (前端助手) | 用于前端开发的辅助工具 |
| Infinity 新标签页 | 提供无限制的标签页管理 |
| JSON Beautifier & Editor | 用于美化和编辑 JSON 格式的工具 |
| JSONViewer | 用于查看和格式化 JSON 的工具 |
| SimpleUndoClose | 提供简单的关闭标签页撤销功能 |
| Vue.js devtools | Vue.js 开发者工具 |
| Wappalyzer - Technology profiler | 网站技术分析工具 |
| 沙拉翻译:聚合词典 、划词翻译 & 查词 | 提供多词典和翻译的划词工具 |
| 猫抓 | 视频工具 |
| 篡改猴 | 网页工具 |
# 随机图片
```
# 随机图片
https://picsum.photos/800/400?random=1
# 小头像
https://api.dicebear.com/7.x/miniavs/svg?seed=1
```
# vite-env.d.ts
```TS
///
///
```
# shims-vue.d.ts
```ts
declare module '*.vue' {
import { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
```
# .prettierrc.cjs
```js
// @see: https://www.prettier.cn
module.exports = {
printWidth: 90,
tabWidth: 2,
semi: false,
trailingComma: 'none',
vueIndentScriptAndStyle: false,
useTabs: false,
singleQuote: true,
quoteProps: 'as-needed',
jsxSingleQuote: false,
bracketSpacing: true,
bracketSameLine: false,
arrowParens: 'always',
proseWrap: 'always',
htmlWhitespaceSensitivity: 'ignore',
endOfLine: 'lf',
embeddedLanguageFormatting: 'auto',
singleAttributePerLine: false
}
```
# .prettierrc
另外一种配置方式,配置跟上面相同
```json
{
"printWidth": 90,
"tabWidth": 2,
"semi": false,
"trailingComma": "none",
"vueIndentScriptAndStyle": false,
"useTabs": false,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"proseWrap": "always",
"htmlWhitespaceSensitivity": "ignore",
"endOfLine": "lf",
"embeddedLanguageFormatting": "auto",
"singleAttributePerLine": false
}
```
# cursor rules
.cursorrules
```
请始终使用中文回复,
开始前必须使用 Context7 获取技术的最新写法和最佳实践,然后再工作
永远都不要自动启动开发服务器,这有很严重的安全问题!!!!
不得随意删除已经存在的代码,不影响运行的代码也不得随意删除,
如果需要图片占位,使用随机图片代替,大小可以修改,示例:https://picsum.photos/800/400?random=1,
如果需要头像占位,使用随机头像代替:https://api.dicebear.com/7.x/miniavs/svg?seed=1,
不要创建测试文件、介绍和总结等与项目无关的文件,时刻保持项目精简
```
.cursor\rules\global.mdc
```md
---
description: Global Rules
globs:
alwaysApply: true
---
# Global Rules
请始终使用中文回复,
开始前必须使用 Context7 获取技术的最新写法和最佳实践,然后再工作
永远都不要自动启动开发服务器,这有很严重的安全问题!!!!
不得随意删除已经存在的代码,不影响运行的代码也不得随意删除,
如果需要图片占位,使用随机图片代替,大小可以修改,示例:https://picsum.photos/800/400?random=1,
如果需要头像占位,使用随机头像代替:https://api.dicebear.com/7.x/miniavs/svg?seed=1,
不要创建测试文件、介绍和总结等与项目无关的文件,时刻保持项目精简
```