Todo list chrome extension
Simple chrome extension with todo list
什么是Todo list chrome extension?
Todo list chrome extension是由syedrameez.aijaz开发的Chrome扩展程序,该扩展的主要功能是“Simple chrome extension with todo list”。
扩展截图
下载Todo list chrome extension扩展crx文件
下载Todo list chrome extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        A simple chrome extension to maintain a todo list of items
Features:
1. User can add new items to the list
2. User can remove the existing items
3. Todo list will persist the todo list in local storage of browser                     扩展基本信息
| 名称 |   |  
| ID | mpodmjidjogbkfdificcepecjpdaccog | 
| 官方URL | https://chromewebstore.google.com/detail/todo-list-chrome-extensio/mpodmjidjogbkfdificcepecjpdaccog | 
| 简介 | Simple chrome extension with todo list | 
| 文件大小 | 958 KB | 
| 安装次数 | 17 | 
| 当前版本 | 1.0 | 
| 更新时间 | 2019-07-19 | 
| 上架时间 | 2019-07-18 | 
| 评分 | 5.00/5 共1次评分 | 
| 开发者 | syedrameez.aijaz | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 支持的语言 | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Todo list chrome extension",
    "version": "1.0",
    "description": "Simple chrome extension with todo list",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Simple Chrome Extension",
        "default_popup": "index.html",
        "default_icon": {
            "16": "get_started16.png",
            "32": "get_started32.png",
            "48": "get_started48.png",
            "128": "get_started128.png"
        }
    },
    "icons": {
        "16": "get_started16.png",
        "32": "get_started32.png",
        "48": "get_started48.png",
        "128": "get_started128.png"
    },
    "manifest_version": 2
}  |  |