Time Tracker
Keeps track of how much time you spend on various web sites.
Vad är Time Tracker?
Time Tracker är en Chrome-tillägg utvecklad av [email protected], och dess huvudfunktion är "Keeps track of how much time you spend on various web sites.".
Tilläggsskärmbilder
Ladda ner Time Tracker-förlängningens CRX-fil
Ladda ner 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
Helps users track how much time they spend on various web sites.
Please email feature requests to: [email protected] or file issues on the project page: https://github.com/navjagpal/browser-timetracker/issues
This project is open source. Grundläggande Information om Tillägg
| Namn | |
| ID | mokmnbikneoaenmckfmgjgjimphfojkd |
| Officiell webbadress | https://chromewebstore.google.com/detail/time-tracker/mokmnbikneoaenmckfmgjgjimphfojkd |
| Beskrivning | Keeps track of how much time you spend on various web sites. |
| Filstorlek | 76.76 KB |
| Antal Installationer | 15,086 |
| Aktuell Version | 1.2.4 |
| Senast Uppdaterad | 2016-10-29 |
| Publiceringsdatum | 2016-10-29 |
| Betyg | 4.24/5 Totalt 132 Betyg |
| Utvecklare | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/navjagpal/browser-timetracker/ |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Time Tracker",
"version": "1.2.4",
"description": "Keeps track of how much time you spend on various web sites.",
"manifest_version": 2,
"background": {
"scripts": [
"config.js",
"sites.js",
"tracker.js",
"background.js"
]
},
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
"permissions": [
"alarms",
"idle",
"tabs"
],
"browser_action": {
"default_icon": "images\/icon.png",
"default_title": "Time Tracker",
"default_popup": "popup.html"
},
"options_page": "options.html",
"icons": {
"19": "images\/icon19.png",
"38": "images\/icon38.png",
"128": "images\/icon.png"
}
} | |