Task timer
This extension set timer for tasks.
什麼是Task timer?
Task timer是由skrasilnikov.dev開發的Chrome擴展程式,該擴展的主要功能是“This extension set timer for tasks.”。
擴展截圖
下載Task timer擴展crx文件
下載Task timer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
It's a chrome extension for creating tasks and counting time for solving these tasks. 擴展基本資訊
| 名稱 | |
| ID | ilodecgofagpdifoghkggnaohndgpipb |
| 官方網址 | https://chrome.google.com/webstore/detail/task-timer/ilodecgofagpdifoghkggnaohndgpipb |
| 簡介 | This extension set timer for tasks. |
| 檔案大小 | 94.94 KB |
| 安裝次數 | 964 |
| 目前版本 | 1.2.3 |
| 更新時間 | 2019-04-09 |
| 上架時間 | 2019-04-09 |
| 評分 | 4.56/5 共 9 次評分 |
| 開發者 | skrasilnikov.dev |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/skrasilnikoff/task-timer-chrome-extension |
| 說明頁面URL | https://github.com/skrasilnikoff/task-timer-chrome-extension |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Task timer",
"description": "This extension set timer for tasks.",
"version": "1.2.3",
"manifest_version": 2,
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"offline_enabled": true,
"permissions": [
"notifications",
"storage"
]
} | |