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
官方網址 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"
    }
}