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”。

擴展截圖

screenshot

下載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 Vibgyor Calendar
ID echhldcmnnbonfbdfillbpmhpbdaakce
官方網址 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"
        }
    }
}