Days Since (Days Count)
Displays the number of days since a specified date right in the toolbar. (Days Count)
Что такое Days Since (Days Count)?
Days Since (Days Count) - это расширение Chrome, разработанное virajctech, и его основная функция - "Displays the number of days since a specified date right in the toolbar. (Days Count)".
Снимки экрана расширения
Скачать файл CRX расширения Days Since (Days Count)
Скачайте файлы расширений Days Since (Days Count) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
It's a great tool to Break bad habits / Create good habits / Track how far you have come since some important day. It's a days count that is ALWAYS visible right in your Chrome toolbar, next to where you type your URLs. Easily change the date by clicking on the extension logo. This also syncs between browsers. Like if you login to same chrome account on two different PCs, it'll show the same results! This extension is open source: https://github.com/virajvchavan/daysCount
Основная информация о расширении
Название | Days Since (Days Count) |
ID | emhhhnhbnjkilmhkiibfhjmefpipnmke |
Официальный URL | https://chromewebstore.google.com/detail/days-since-days-count/emhhhnhbnjkilmhkiibfhjmefpipnmke |
Описание | Displays the number of days since a specified date right in the toolbar. (Days Count) |
Размер файла | 23.59 KB |
Количество установок | 1,284 |
Текущая Версия | 1.1 |
Последнее Обновление | 2019-08-31 |
Дата публикации | 2019-08-31 |
Рейтинг | 4.33/5 Всего 3 оценок |
Разработчик | virajctech |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/virajvchavan/daysCount |
URL страницы помощи | https://github.com/virajvchavan/daysCount |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Days Since (Days Count)", "short_name": "Days Since", "version": "1.1", "description": "Displays the number of days since a specified date right in the toolbar. (Days Count)", "permissions": [ "storage" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "browser_action": { "default_title": "Click here to set the date", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" } } |