G-note: Note taking App

G-note is an AI-powered note-capturing app that frees you from tedious note taking.

G-note: Note taking App là gì?

G-note: Note taking App là một tiện ích mở rộng Chrome được phát triển bởi Lakebrains Technologies, và tính năng chính của nó là "G-note is an AI-powered note-capturing app that frees you from tedious note taking.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng G-note: Note taking App

Tải xuống các tệp mở rộng G-note: Note taking App dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        “Focus on meetings, not note-taking”

G-note is an AI-powered note-capturing app that frees you from tedious note taking. It captures and sends your meeting notes privately to your registered email within minutes after the call. The app provides a "summary", "action items", and highlights any "roadblocks" discussed during the meeting in a text format. G-note doesn't store any audio, video, transcripts, or other call-related data.

Note-taking during meetings can be a painstaking process that often slows you down. So, the next time you consider taking notes during a meeting, install G-note. While G-note takes care of note-taking, you can fully focus on your meetings.

How to set up G-note:
-> Install the G-note plugin.
-> Register with your gmail account.
-> Enjoy!

Who uses G-note:
-> Product, design, and engineering teams.
-> Creative teams, freelancers, and agencies.
-> HR managers.
-> Customer support teams.
-> Company executives.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên G-note: Note taking App G-note: Note taking App
ID hhmppgfffhfgminobagjopfmcjbhgmcb
URL Chính Thức https://chromewebstore.google.com/detail/g-note-note-taking-app/hhmppgfffhfgminobagjopfmcjbhgmcb
Mô tả G-note is an AI-powered note-capturing app that frees you from tedious note taking.
Kích Thước Tệp 1.8 MB
Số Lần Cài Đặt 198
Phiên Bản Hiện Tại 1.8
Cập Nhật Lần Cuối 2023-12-08
Ngày Phát Hành 2023-06-04
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Lakebrains Technologies
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://lakebrains.com/privacy-policies
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "G-note is an AI-powered note-capturing app that frees you from tedious note taking.",
    "version": "1.8",
    "name": "G-note: Note taking App",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*",
                ""
            ],
            "run_at": "document_end",
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "action": {
        "default_title": " Gnote",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "img\/logo48.png",
        "128": "img\/logo128.png"
    },
    "oauth2": {
        "client_id": "646198872246-l67n373vpgh8bjucpn1ul73disa82q6c.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.profile",
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "img\/*",
                "inject.js",
                "pako.js"
            ],
            "matches": [
                "https:\/\/meet.google.com\/*"
            ]
        }
    ],
    "permissions": [
        "scripting",
        "identity",
        "activeTab",
        "storage",
        "tabs",
        "offscreen"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
        "sandbox": "script-src 'self' 'wasm-unsafe-eval'; sandbox allow-scripts; script-src 'self' 'https:\/\/www.googleapis.com'; object-src 'self'"
    },
    "host_permissions": [
        "https:\/\/meet.google.com\/*",
        ""
    ],
    "background": {
        "service_worker": "background.bundle.js"
    }
}