Vibgyor Calendar

This extension allows the user to display weekday information on pages

Что такое Vibgyor Calendar?

Vibgyor Calendar - это расширение Chrome, разработанное randeep, и его основная функция - "This extension allows the user to display weekday information on pages".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Vibgyor Calendar

Скачайте файлы расширений 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 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"
        }
    }
}