Q Todo
A minimal todo list app that opens with the click of a button.
Что такое Q Todo?
Q Todo - это расширение Chrome, разработанное Query, и его основная функция - "A minimal todo list app that opens with the click of a button.".
Снимки экрана расширения
Скачать файл CRX расширения Q Todo
Скачайте файлы расширений Q Todo в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Q Todo is a clean, minimal todo app that opens in an extension popup and syncs accross devices for the easiest user interaction possible.
Q Todo is completely free. No hidden costs, no "premium only" features, nothing. It's completely free and completely open source, for anyone to use. Основная информация о расширении
| Название | |
| ID | gjohihdledaphmnmelialnhkkehommdk |
| Официальный URL | https://chromewebstore.google.com/detail/q-todo/gjohihdledaphmnmelialnhkkehommdk |
| Описание | A minimal todo list app that opens with the click of a button. |
| Размер файла | 10.21 KB |
| Количество установок | 364 |
| Текущая Версия | 1.0.3 |
| Последнее Обновление | 2019-04-11 |
| Дата публикации | 2019-04-11 |
| Рейтинг | 4.20/5 Всего 5 оценок |
| Разработчик | Query |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Q Todo",
"description": "A minimal todo list app that opens with the click of a button.",
"version": "1.0.3",
"permissions": [
"declarativeContent",
"storage",
"http:\/\/fonts.googleapis.com\/",
"https:\/\/fonts.googleapis.com\/"
],
"background": {
"page": "bg.html"
},
"incognito": "split",
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"default_title": "Q Todo"
},
"manifest_version": 2,
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
} | |