Day Counter
Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.
¿Qué es Day Counter?
Day Counter es una extensión de Chrome desarrollada por Josh, y su función principal es "Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Day Counter
Descarga archivos de extensión Day Counter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
It shows the number of days since a specified date in the toolbar. It is kind of like a timer/stopwatch but just for the days between dates. Good for when you're trying to break a habit, and you want to see how many days you have gone (ie. looking at facebook while working). This also syncs between browsers, you know what I mean. Like you can be in one browser, and then get on another computer and login to chrome, and the date will sync, so you don't have to keep it updated. Like it saves it on the internet, so it can be accessed anywhere, you know? Like it's something that helps you manage stuff between computers and stuff, get it?
Información Básica de la Extensión
Nombre | Day Counter |
ID | glnbjmdjpcccpdlckpenknmacmgbecpa |
URL Oficial | https://chromewebstore.google.com/detail/day-counter/glnbjmdjpcccpdlckpenknmacmgbecpa |
Descripción | Displays the number of days since a given date in the toolbar. Right click icon->Options to change date. |
Tamaño del Archivo | 21.39 KB |
Cantidad de Instalaciones | 3,258 |
Versión Actual | 1.0.1 |
Última Actualización | 2013-05-21 |
Fecha de Publicación | 2013-05-21 |
Calificación | 4.35/5 Total de 54 Calificaciones |
Desarrollador | Josh |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "page": "background.html" }, "content_scripts": [ { "js": [ "script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "description": "Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "browser_action": { "default_icon": "icon16.png" }, "permissions": [ "storage" ], "options_page": "options.html", "incognito": "split", "manifest_version": 2, "name": "Day Counter", "version": "1.0.1" } |