Minterapp Time Tracker
This extension helps to track time to increase your productivity
Qu'est-ce que Minterapp Time Tracker ?
Minterapp Time Tracker est une extension Chrome développée par Minterapp, et sa fonction principale est "This extension helps to track time to increase your productivity".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Minterapp Time Tracker
Téléchargez les fichiers d'extension Minterapp Time Tracker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | |
ID | jgkeaioebkbphfflhckgegdpbogcboen |
URL Officiel | https://chrome.google.com/webstore/detail/minterapp-time-tracker/jgkeaioebkbphfflhckgegdpbogcboen |
Description | This extension helps to track time to increase your productivity |
Taille du Fichier | 98.08 KB |
Nombre d'Installations | 75 |
Version Actuelle | 0.0.1.9 |
Dernière Mise à Jour | 2018-06-11 |
Date de Publication | 2018-06-11 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Minterapp |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://www.minterapp.com |
URL de la Page de Politique de Confidentialité | http://www.minterapp.com/privacy-policy |
Langues Prises en Charge | 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\/*" ] } |