Vibgyor Calendar
This extension allows the user to display weekday information on pages
O que é Vibgyor Calendar?
Vibgyor Calendar é uma extensão do Chrome desenvolvida por randeep, e sua principal característica é "This extension allows the user to display weekday information on pages".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Vibgyor Calendar
Baixe arquivos de extensão Vibgyor Calendar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Vibgyor Calendar |
ID | echhldcmnnbonfbdfillbpmhpbdaakce |
URL Oficial | https://chromewebstore.google.com/detail/vibgyor-calendar/echhldcmnnbonfbdfillbpmhpbdaakce |
Descrição | This extension allows the user to display weekday information on pages |
Tamanho do Arquivo | 20.83 KB |
Contagem de Instalações | 17 |
Versão Atual | 0.1.6 |
Última Atualização | 2018-01-17 |
Data de Publicação | 2018-01-17 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | randeep |
Tipo de Pagamento | free |
Site da Extensão | https://www.facebook.com/Vibgyor-calendar-1509114415837508/ |
Idiomas Suportados | 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" } } } |