Chrometa Browser Extension

A minimal extension which demonstrates how to create a extension with Gmail.JS and NodeJS-based bundling.

Qu'est-ce que Chrometa Browser Extension ?

Chrometa Browser Extension est une extension Chrome développée par https://www.chrometa.com, et sa fonction principale est "A minimal extension which demonstrates how to create a extension with Gmail.JS and NodeJS-based bundling.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Chrometa Browser Extension

Téléchargez les fichiers d'extension Chrometa Browser Extension 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

                        The Chrometa Gmail Plugin for Google Chrome will help you capture and make sense of your Gmail based email time more accurately and efficiently.  

By installing this plugin, Chrometa will be able to pull the To/From address and Subject line information for all emails you read, compose, and reply to. 

Chrometa is an automatic time tracking software that automatically captures and categorizes your time - without the need to manually enter anything into the computer as you work.                    

Informations de Base sur l'Extension

Nom Chrometa Browser Extension Chrometa Browser Extension
ID oddgmebjfbcgbpooakegghmjgfmahjgb
URL Officiel https://chromewebstore.google.com/detail/chrometa-browser-extensio/oddgmebjfbcgbpooakegghmjgfmahjgb
Description A minimal extension which demonstrates how to create a extension with Gmail.JS and NodeJS-based bundling.
Taille du Fichier 3.21 MB
Nombre d'Installations 127
Version Actuelle 1.0
Dernière Mise à Jour 2021-12-18
Date de Publication 2021-02-27
Développeur https://www.chrometa.com
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://chrometa.zendesk.com/hc/en-us
URL de la Page de Politique de Confidentialité https://www.chrometa.com/privacy.html
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrometa Browser Extension",
    "short_name": "chrometabrowserextension",
    "version": "1.0",
    "author": "Jeremy Demain ",
    "description": "A minimal extension which demonstrates how to create a extension with Gmail.JS and NodeJS-based bundling.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/extensionInjector.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "dist\/extension.js"
    ],
    "permissions": [
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "images\/Chrometa 16x16.png",
        "32": "images\/Chrometa 32x32.png",
        "48": "images\/Chrometa 48x48.png",
        "128": "images\/Chrometa 128x128.png"
    }
}