Outlook Reloader

This extension will reload the web outlook (https://outlook.office.com/owa/) periodically.

Was ist Outlook Reloader?

Outlook Reloader ist eine Chrome-Erweiterung, die von tidnlyam entwickelt wurde, und ihr Hauptmerkmal ist "This extension will reload the web outlook (https://outlook.office.com/owa/) periodically.".

Erweiterungsscreenshots

screenshot

Outlook Reloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Outlook Reloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension will reload the web outlook (https://outlook.office.com/owa/) periodically.                    

Grundlegende Informationen zur Erweiterung

Name Outlook Reloader Outlook Reloader
ID hcmghgkpcoagochnpegomdhmfknmfcjc
Offizielle URL https://chromewebstore.google.com/detail/outlook-reloader/hcmghgkpcoagochnpegomdhmfknmfcjc
Beschreibung This extension will reload the web outlook (https://outlook.office.com/owa/) periodically.
Dateigröße 4.87 KB
Installationsanzahl 205
Aktuelle Version 1.0.2
Letztes Update 2019-05-14
Veröffentlichungsdatum 2019-05-13
Entwickler tidnlyam
Zahlungsart free
Erweiterungswebsite https://github.com/tily/outlook_reloader
Unterstützte Sprachen ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Outlook Reloader",
    "description": "This extension will reload the web outlook (https:\/\/outlook.office.com\/owa\/) periodically.",
    "version": "1.0.2",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/outlook.office.com\/mail\/*",
                "https:\/\/outlook.office365.com\/calendar\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Outlook Reloader",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "https:\/\/outlook.office.com\/mail\/*",
        "https:\/\/outlook.office365.com\/calendar\/*"
    ]
}