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 | 
| Eメール | [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
}  |  |