Clipou: Clipboard History Manager
Manage all your Clipps in one app
什么是Clipou: Clipboard History Manager?
Clipou: Clipboard History Manager是由Extensions And Co开发的Chrome扩展程序,该扩展的主要功能是“Manage all your Clipps in one app”。
扩展截图
下载Clipou: Clipboard History Manager扩展crx文件
下载Clipou: Clipboard History Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Quickly manage and list copied text.
Clipou will store the text you've copied across the web and allow you to manage it easily.
Features :
- Manage your ClipBoard history.
- Add Clips by Ctrl + C or Click and Copy
- Add your Clips as favorits.
- Delete your Clips.
Notes :
- Clipou will ignore copied text from password fields.
- You Must reopen Chrome after installation. 扩展基本信息
| 名称 | |
| ID | npfghbanedhpdmbnnbiacklepppgfbid |
| 官方URL | https://chromewebstore.google.com/detail/clipou-clipboard-history/npfghbanedhpdmbnnbiacklepppgfbid |
| 简介 | Manage all your Clipps in one app |
| 文件大小 | 104 KB |
| 安装次数 | 31 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2022-10-24 |
| 上架时间 | 2022-10-23 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Extensions And Co |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_ext_name__",
"description": "__MSG_ext_description__",
"version": "1.0.0",
"manifest_version": 3,
"default_locale": "en",
"icons": {
"16": "images\/icon16.png",
"24": "images\/icon24.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"permissions": [
"storage",
"unlimitedStorage",
"contextMenus"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/content-script.js"
]
}
],
"action": {
"default_title": "__MSG_ext_name__",
"default_popup": "html\/popup.html"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+P",
"mac": "Command+Shift+P"
}
}
}
} | |