Vibgyor Calendar
This extension allows the user to display weekday information on pages
什么是Vibgyor Calendar?
Vibgyor Calendar是由randeep开发的Chrome扩展程序,该扩展的主要功能是“This extension allows the user to display weekday information on pages”。
扩展截图
下载Vibgyor Calendar扩展crx文件
下载Vibgyor Calendar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
We want to use rainbow colours to map weekdays in a calendar - It follows VIBGYOR or ROYGBIV pattern Monday - Violet Tuesday - Indigo Wednesday - Blue Thursday - Green ( All Green ) Friday - Yellow ( Happy ) Saturday - Orange ( Amber ) Sunday - Red ( No Work ) There is standard VIBGYOR pattern https://en.wikipedia.org/wiki/ROYGBIV Do you always feel the need to know the day when you see any date instantly before making commitments and to register in your diary . How to you like the date pattern 25 Dec or Monday 25th Dec ..... ? Do you quickly look up for the day if you see a date written like this 1 Dec, 14 Jan or 30Jan ....? Wouldn't it be great and make our lives easier if we colour code the dates in such a way that it is easier to remember for everyone. You look at a colour of date and you know what day of week is that without referring the calendar. We thought about it and worked on it to develop a program that will change the date on your computer system on all the applications from "DateMonth" pattern to "Day Date Month " like 25 Dec to Monday 25 Dec automatically which will give you the clear picture of day and date and it save your time to refer calendar to check day and remove one more extra hassle in your life . In addition to this we are in the process of colour coding the dates in a particular format which is easy to remember. We thought of coordinating colours of the Rainbow 🌈 with days of week like this . Certain date types are checked OCTOBER. Weds 4 17 June, 3-7pm SAT 14 OCT 26/07/2017 07:00 AM 9 April 2016 July 29; Time: 8:00 am - 6:00 ISO Date "2015-03-25" (The International Standard) Short Date "03/25/2015" Long Date "Mar 25 2015" or "25 Mar 2015" Full Date "Wednesday March 25 2015" 25 Jan 2018 28 Oct - 29 Oct Thursday 13 July 2017 30th October 2017 6 September 2017 Thu, 5 Sept 2nd Nov 2017 2 Nov - 3 Nov 2017 Thu 2 Nov If we are able to adopt this pattern then it can create a standard to identify day of the week if date is written using this colour code logic.There are seven rainbow colours and seven days in the week.As this colour pattern is taught in schools so it will not be difficult for people to remember this colour code. For Example Mon, 23 Oct 2017 will be written with violet colour and we can say its Monday. Tue, 24 Oct 2017 will be written with indigo colour and we can say its Tuesday. Wed, 25 Oct 2017 will be written with blue colour - Wednesday Thu, 26 Oct 2017 will be written with green colour - Thrusday Fri, 27 Oct 2017 will be written with yellow - Friday Sat, 28 Oct 2017 will be written with orange - Saturday Sun, 29 Oct 2017 will be written with Red - Sunday I see there is value in defining this colour coding as you can clearly say what day is today by looking at the date.
扩展基本信息
名称 | Vibgyor Calendar |
ID | echhldcmnnbonfbdfillbpmhpbdaakce |
官方URL | https://chromewebstore.google.com/detail/vibgyor-calendar/echhldcmnnbonfbdfillbpmhpbdaakce |
简介 | This extension allows the user to display weekday information on pages |
文件大小 | 20.83 KB |
安装次数 | 17 |
当前版本 | 0.1.6 |
更新时间 | 2018-01-17 |
上架时间 | 2018-01-17 |
评分 | 5.00/5 共1次评分 |
开发者 | randeep |
付费类型 | free |
扩展官网 | https://www.facebook.com/Vibgyor-calendar-1509114415837508/ |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Vibgyor Calendar", "description": "This extension allows the user to display weekday information on pages", "version": "0.1.6", "permissions": [ "tabs", "background", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "icon-16.png", "128": "icon-128.png" }, "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "45.0" } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "bundle.js" ] } ], "browser_action": { "default_title": "Vibgyor Calendar", "default_popup": "popup.html", "default_icon": { "19": "icon-19.png", "38": "icon-38.png" } } } |