Days Since (Days Count)
Displays the number of days since a specified date right in the toolbar. (Days Count)
Vad är Days Since (Days Count)?
Days Since (Days Count) är en Chrome-tillägg utvecklad av virajctech, och dess huvudfunktion är "Displays the number of days since a specified date right in the toolbar. (Days Count)".
Tilläggsskärmbilder
Ladda ner Days Since (Days Count)-förlängningens CRX-fil
Ladda ner Days Since (Days Count)-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
It's a great tool to Break bad habits / Create good habits / Track how far you have come since some important day. It's a days count that is ALWAYS visible right in your Chrome toolbar, next to where you type your URLs. Easily change the date by clicking on the extension logo. This also syncs between browsers. Like if you login to same chrome account on two different PCs, it'll show the same results! This extension is open source: https://github.com/virajvchavan/daysCount
Grundläggande Information om Tillägg
Namn | Days Since (Days Count) |
ID | emhhhnhbnjkilmhkiibfhjmefpipnmke |
Officiell webbadress | https://chromewebstore.google.com/detail/days-since-days-count/emhhhnhbnjkilmhkiibfhjmefpipnmke |
Beskrivning | Displays the number of days since a specified date right in the toolbar. (Days Count) |
Filstorlek | 23.59 KB |
Antal Installationer | 1,284 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2019-08-31 |
Publiceringsdatum | 2019-08-31 |
Betyg | 4.33/5 Totalt 3 Betyg |
Utvecklare | virajctech |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/virajvchavan/daysCount |
Hjälpsida URL | https://github.com/virajvchavan/daysCount |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Days Since (Days Count)", "short_name": "Days Since", "version": "1.1", "description": "Displays the number of days since a specified date right in the toolbar. (Days Count)", "permissions": [ "storage" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "browser_action": { "default_title": "Click here to set the date", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" } } |