Redmine Time Tracker
Plugin to track your work time (works with chrome closed) and manage it.
Что такое Redmine Time Tracker?
Redmine Time Tracker - это расширение Chrome, разработанное matheusmmcs, и его основная функция - "Plugin to track your work time (works with chrome closed) and manage it.".
Снимки экрана расширения
Скачать файл CRX расширения Redmine Time Tracker
Скачайте файлы расширений Redmine Time Tracker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Redmine Task Timer Основная информация о расширении
| Название | |
| ID | kofohpbnioeihonedeofiompgloghehe |
| Официальный URL | https://chromewebstore.google.com/detail/redmine-time-tracker/kofohpbnioeihonedeofiompgloghehe |
| Описание | Plugin to track your work time (works with chrome closed) and manage it. |
| Размер файла | 265 KB |
| Количество установок | 159 |
| Текущая Версия | 0.2.4 |
| Последнее Обновление | 2014-07-03 |
| Дата публикации | 2014-07-03 |
| Рейтинг | 3.33/5 Всего 15 оценок |
| Разработчик | matheusmmcs |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Redmine Time Tracker",
"version": "0.2.4",
"description": "Plugin to track your work time (works with chrome closed) and manage it.",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"js\/jquery.js"
]
}
],
"permissions": [
"notifications",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*",
"unlimitedStorage"
],
"background": {
"scripts": [
"js\/jquery.js",
"js\/utils.js",
"js\/background.js"
]
},
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png"
},
"browser_action": {
"default_icon": "images\/icon16.png",
"default_title": "RedmineTimeTracker",
"default_popup": "templates\/popup.html"
},
"web_accessible_resources": [
"js\/jquery.min.map",
"js\/jquery.calendario.redmine.js",
"css\/calendario-redmine.css",
"fonts\/glyphicons-halflings-regular.svg",
"fonts\/glyphicons-halflings-regular.eot",
"fonts\/glyphicons-halflings-regular.ttf",
"fonts\/glyphicons-halflings-regular.woff"
],
"manifest_version": 2
} | |