Workweek Calendar

A simple Chrome extension which shows any day's work week number. A quick and handy utility for those official emails!

What is Workweek Calendar?

Workweek Calendar is a Chrome extension developed by Arjun Manevannan, and its main feature is "A simple Chrome extension which shows any day's work week number. A quick and handy utility for those official emails!".

Extension Screenshots

screenshot

Download Workweek Calendar Extension CRX File

Download Workweek Calendar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A simple Chrome extension which shows any day's work week number. 

A quick and handy utility for those official emails!                    

Extension Basic Information

Name Workweek Calendar Workweek Calendar
ID iaahjlckpnomnddgpfplnkiecoofpchh
Official URL https://chromewebstore.google.com/detail/workweek-calendar/iaahjlckpnomnddgpfplnkiecoofpchh
Description A simple Chrome extension which shows any day's work week number. A quick and handy utility for those official emails!
File Size 1.19 MB
Installation Count 129
Current Version 1.0
Last Updated 2019-03-06
Publish Date 2019-03-02
Developer Arjun Manevannan
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Workweek Calendar",
    "version": "1.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "permissions": [
            "tabs"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Workweek Calendar"
    }
}