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
公式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"
        }
    }
}