Minterapp Time Tracker
This extension helps to track time to increase your productivity
什麼是Minterapp Time Tracker?
Minterapp Time Tracker是由Minterapp開發的Chrome擴展程式,該擴展的主要功能是“This extension helps to track time to increase your productivity”。
擴展截圖
下載Minterapp Time Tracker擴展crx文件
下載Minterapp Time Tracker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Minterapp is an online time tracking tool you have easily track how much time you spend on projects. You can easily use this chrome extension to track time while using your favorite project management tools like Basecamp 3, Trello and more!
擴展基本資訊
名稱 | |
ID | jgkeaioebkbphfflhckgegdpbogcboen |
官方網址 | https://chrome.google.com/webstore/detail/minterapp-time-tracker/jgkeaioebkbphfflhckgegdpbogcboen |
簡介 | This extension helps to track time to increase your productivity |
檔案大小 | 98.08 KB |
安裝次數 | 75 |
目前版本 | 0.0.1.9 |
更新時間 | 2018-06-11 |
上架時間 | 2018-06-11 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Minterapp |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://www.minterapp.com |
隱私政策頁面URL | http://www.minterapp.com/privacy-policy |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Minterapp Time Tracker", "description": "This extension helps to track time to increase your productivity", "version": "0.0.1.9", "icons": { "128": "images\/mi_light_green_logo.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "webNavigation" ], "short_name": "Minterapp", "content_scripts": [ { "matches": [ "https:\/\/3.basecamp.com\/*", "https:\/\/basecamp.com\/*", "https:\/\/app.asana.com\/*", "*:\/\/trello.com\/*" ], "css": [ "bootstrap.css" ], "all_frames": true, "js": [ "jquery-2.2.4.js", "jquery.turbolinks.js", "popup.js", "content.js", "bootstrap.js" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.minterapp.com\/*", "*:\/\/3.basecamp.com\/*", "*:\/\/trello.com\/*" ] }, "web_accessible_resources": [ "images\/*" ] } |