Chrometa Browser Extension

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

Vad är Chrometa Browser Extension?

Chrometa Browser Extension är en Chrome-tillägg utvecklad av https://www.chrometa.com, och dess huvudfunktion är "A minimal extension which demonstrates how to create a extension with Gmail.JS and NodeJS-based bundling.".

Tilläggsskärmbilder

screenshot

Ladda ner Chrometa Browser Extension-förlängningens CRX-fil

Ladda ner Chrometa Browser Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Chrometa Browser Extension Chrometa Browser Extension
ID oddgmebjfbcgbpooakegghmjgfmahjgb
Officiell webbadress https://chromewebstore.google.com/detail/chrometa-browser-extensio/oddgmebjfbcgbpooakegghmjgfmahjgb
Beskrivning A minimal extension which demonstrates how to create a extension with Gmail.JS and NodeJS-based bundling.
Filstorlek 3.21 MB
Antal Installationer 127
Aktuell Version 1.0
Senast Uppdaterad 2021-12-18
Publiceringsdatum 2021-02-27
Utvecklare https://www.chrometa.com
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://chrometa.zendesk.com/hc/en-us
URL till Sekretesspolicy Sidan https://www.chrometa.com/privacy.html
Stödda Språk 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"
    }
}