Todo list chrome extension
Simple chrome extension with todo list
What is Todo list chrome extension?
Todo list chrome extension is a Chrome extension developed by syedrameez.aijaz, and its main feature is "Simple chrome extension with todo list".
Extension Screenshots
Download Todo list chrome extension Extension CRX File
Download Todo list chrome extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Todo list chrome extension |
ID | mpodmjidjogbkfdificcepecjpdaccog |
Official URL | https://chromewebstore.google.com/detail/todo-list-chrome-extensio/mpodmjidjogbkfdificcepecjpdaccog |
Description | Simple chrome extension with todo list |
File Size | 958 KB |
Installation Count | 17 |
Current Version | 1.0 |
Last Updated | 2019-07-19 |
Publish Date | 2019-07-18 |
Rating | 5.00/5 Total 1 Ratings |
Developer | syedrameez.aijaz |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |