Days Since (Days Count)
Displays the number of days since a specified date right in the toolbar. (Days Count)
什么是Days Since (Days Count)?
Days Since (Days Count)是由virajctech开发的Chrome扩展程序,该扩展的主要功能是“Displays the number of days since a specified date right in the toolbar. (Days Count)”。
扩展截图
下载Days Since (Days Count)扩展crx文件
下载Days Since (Days Count)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Days Since (Days Count) |
ID | emhhhnhbnjkilmhkiibfhjmefpipnmke |
官方URL | https://chromewebstore.google.com/detail/days-since-days-count/emhhhnhbnjkilmhkiibfhjmefpipnmke |
简介 | Displays the number of days since a specified date right in the toolbar. (Days Count) |
文件大小 | 23.59 KB |
安装次数 | 1,284 |
当前版本 | 1.1 |
更新时间 | 2019-08-31 |
上架时间 | 2019-08-31 |
评分 | 4.33/5 共3次评分 |
开发者 | virajctech |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/virajvchavan/daysCount |
帮助页面URL | https://github.com/virajvchavan/daysCount |
支持的语言 | 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" } } |