Workweek Calendar

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

Qu'est-ce que Workweek Calendar ?

Workweek Calendar est une extension Chrome développée par Arjun Manevannan, et sa fonction principale est "A simple Chrome extension which shows any day's work week number. A quick and handy utility for those official emails!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Workweek Calendar

Téléchargez les fichiers d'extension Workweek Calendar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

A quick and handy utility for those official emails!                    

Informations de Base sur l'Extension

Nom Workweek Calendar Workweek Calendar
ID iaahjlckpnomnddgpfplnkiecoofpchh
URL Officiel 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!
Taille du Fichier 1.19 MB
Nombre d'Installations 129
Version Actuelle 1.0
Dernière Mise à Jour 2019-03-06
Date de Publication 2019-03-02
Développeur Arjun Manevannan
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}