Chrometa Browser Extension

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

Chrometa Browser Extension क्या है?

Chrometa Browser Extension https://www.chrometa.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A minimal extension which demonstrates how to create a extension with Gmail.JS and NodeJS-based bundling."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Chrometa Browser Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Chrometa Browser Extension Chrometa Browser Extension
ID oddgmebjfbcgbpooakegghmjgfmahjgb
आधिकारिक URL https://chromewebstore.google.com/detail/chrometa-browser-extensio/oddgmebjfbcgbpooakegghmjgfmahjgb
विवरण A minimal extension which demonstrates how to create a extension with Gmail.JS and NodeJS-based bundling.
फ़ाइल का आकार 3.21 MB
स्थापना संख्या 127
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-12-18
प्रकाशन तिथि 2021-02-27
डेवलपर https://www.chrometa.com
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://chrometa.zendesk.com/hc/en-us
गोपनीयता नीति पृष्ठ URL https://www.chrometa.com/privacy.html
समर्थित भाषाएँ 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"
    }
}