Checklist
Checklist
什么是Checklist?
Checklist是由Togglecorp开发的Chrome扩展程序,该扩展的主要功能是“Checklist”。
扩展截图
下载Checklist扩展crx文件
下载Checklist扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple checklist addon to keep tracks of things.
- Badge shows the no. of things to do in your checklist.
- Separate list for things to do and things already done.
- Items can be sorted by dragging them.
- Users can add custom tags with '@'. 扩展基本信息
| 名称 | |
| ID | fnfekoddbjkgnhkhjlaiddjionpkeddn |
| 官方URL | https://chromewebstore.google.com/detail/checklist/fnfekoddbjkgnhkhjlaiddjionpkeddn |
| 简介 | Checklist |
| 文件大小 | 96.89 KB |
| 安装次数 | 20,000 |
| 当前版本 | 1.3.0 |
| 更新时间 | 2020-07-12 |
| 上架时间 | 2020-05-30 |
| 评分 | 4.52/5 共27次评分 |
| 开发者 | Togglecorp |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://beta.thedeep.io/privacy/DEEP+Extension+Privacy+Policy+as+of+02_24_2019.pdf |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"short_name": "Checklist",
"browser_action": {
"default_popup": "index.html"
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"storage"
],
"icons": {
"32": "icons\/checklist-32.png",
"64": "icons\/checklist-64.png",
"128": "icons\/checklist-128.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"name": "Checklist",
"description": "Checklist",
"author": "",
"version": "1.3.0"
} | |