Chrometa Browser Extension

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

Apa itu Chrometa Browser Extension?

Chrometa Browser Extension adalah ekstensi Chrome yang dikembangkan oleh https://www.chrometa.com, dan fitur utamanya adalah "A minimal extension which demonstrates how to create a extension with Gmail.JS and NodeJS-based bundling.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Chrometa Browser Extension

Unduh file ekstensi Chrometa Browser Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Chrometa Browser Extension Chrometa Browser Extension
ID oddgmebjfbcgbpooakegghmjgfmahjgb
URL Resmi https://chromewebstore.google.com/detail/chrometa-browser-extensio/oddgmebjfbcgbpooakegghmjgfmahjgb
Deskripsi A minimal extension which demonstrates how to create a extension with Gmail.JS and NodeJS-based bundling.
Ukuran File 3.21 MB
Jumlah Instalasi 127
Versi Saat Ini 1.0
Terakhir Diperbarui 2021-12-18
Tanggal Publikasi 2021-02-27
Pengembang https://www.chrometa.com
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://chrometa.zendesk.com/hc/en-us
URL Halaman Kebijakan Privasi https://www.chrometa.com/privacy.html
Bahasa yang Didukung 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"
    }
}