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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.chrometa.com และคุณลักษณะหลักของมันคือ "A minimal extension which demonstrates how to create a extension with Gmail.JS and NodeJS-based bundling."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrometa Browser Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}