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
电子邮箱 [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"
    }
}