Potato timer
This extension is for managing your working and break times
Что такое Potato timer?
Potato timer - это расширение Chrome, разработанное gabrielfirmacion, и его основная функция - "This extension is for managing your working and break times".
Снимки экрана расширения
Скачать файл CRX расширения Potato timer
Скачайте файлы расширений Potato timer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Have you ever wanted to take a break from work and just surf around the internet but at the same time making sure that you don't end up surfing the net the whole day? Here is Potato Timer! It gives you a 10minute break and it lets you know after time's up that you need to get back to work and not to be a POTATO!!
Основная информация о расширении
Название | Potato timer |
ID | cohpelnhkkflnlnkfadomkimmpejeifa |
Официальный URL | https://chromewebstore.google.com/detail/potato-timer/cohpelnhkkflnlnkfadomkimmpejeifa |
Описание | This extension is for managing your working and break times |
Размер файла | 149 KB |
Количество установок | 15 |
Текущая Версия | 2.0 |
Последнее Обновление | 2016-01-28 |
Дата публикации | 2016-01-28 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | gabrielfirmacion |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Potato timer", "description": "This extension is for managing your working and break times", "version": "2.0", "browser_action": { "default_icon": "nopotato.png", "default_popup": "popup.html", "default_title": "No potato!" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "contentscript.js", "jquery-2.1.4.min.js" ] } ], "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |