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 |
官方URL | 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\/*" ] } |