Todo list chrome extension
Simple chrome extension with todo list
Co to jest Todo list chrome extension?
Todo list chrome extension to rozszerzenie Chrome opracowane przez syedrameez.aijaz, a jego główną funkcją jest „Simple chrome extension with todo list”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Todo list chrome extension
Pobierz pliki rozszerzeń Todo list chrome extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | mpodmjidjogbkfdificcepecjpdaccog |
| Oficjalny URL | https://chromewebstore.google.com/detail/todo-list-chrome-extensio/mpodmjidjogbkfdificcepecjpdaccog |
| Opis | Simple chrome extension with todo list |
| Rozmiar pliku | 958 KB |
| Liczba instalacji | 17 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2019-07-19 |
| Data Publikacji | 2019-07-18 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | syedrameez.aijaz |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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
} | |