Minterapp Time Tracker
This extension helps to track time to increase your productivity
Vad är Minterapp Time Tracker?
Minterapp Time Tracker är en Chrome-tillägg utvecklad av Minterapp, och dess huvudfunktion är "This extension helps to track time to increase your productivity".
Tilläggsskärmbilder
Ladda ner Minterapp Time Tracker-förlängningens CRX-fil
Ladda ner Minterapp Time Tracker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | |
ID | jgkeaioebkbphfflhckgegdpbogcboen |
Officiell webbadress | https://chrome.google.com/webstore/detail/minterapp-time-tracker/jgkeaioebkbphfflhckgegdpbogcboen |
Beskrivning | This extension helps to track time to increase your productivity |
Filstorlek | 98.08 KB |
Antal Installationer | 75 |
Aktuell Version | 0.0.1.9 |
Senast Uppdaterad | 2018-06-11 |
Publiceringsdatum | 2018-06-11 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Minterapp |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://www.minterapp.com |
URL till Sekretesspolicy Sidan | http://www.minterapp.com/privacy-policy |
Stödda Språk | 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\/*" ] } |