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によって開発されたChromeの拡張機能で、その主な機能は「A minimal extension which demonstrates how to create a extension with Gmail.JS and NodeJS-based bundling.」です。

拡張機能のスクリーンショット

screenshot

Chrometa Browser Extension拡張機能のCRXファイルをダウンロード

Chrometa Browser Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}