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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}