Coda Browser Extension

Coda Browser Extension

Coda Browser Extension là gì?

Coda Browser Extension là một tiện ích mở rộng Chrome được phát triển bởi https://coda.io, và tính năng chính của nó là "Coda Browser Extension".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Coda Browser Extension

Tải xuống các tệp mở rộng Coda Browser Extension 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

                        Coda for Google Chrome provides a more integrated browser experience. As of today, you can enable having one tab per doc, search from the address bar, or bookmark any webpage to any Coda table.

For more info, check out: https://help.coda.io/faq/what-is-the-coda-chrome-extension                    

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

Tên Coda Browser Extension Coda Browser Extension
ID cdgkmagmdldlpiglliebaajdpdkigcbi
URL Chính Thức https://chromewebstore.google.com/detail/coda-browser-extension/cdgkmagmdldlpiglliebaajdpdkigcbi
Mô tả Coda Browser Extension
Kích Thước Tệp 152 KB
Số Lần Cài Đặt 11,773
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2021-04-01
Ngày Phát Hành 2020-04-17
Đánh Giá 4.77/5 Tổng số 13 Đánh Giá
Nhà Phát Triển https://coda.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://coda.io/
URL Trang Trợ Giúp https://help.coda.io/faq/what-is-the-coda-chrome-extension
URL Trang Chính Sách Bảo Mật https://coda.io/trust/privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Coda Browser Extension",
    "short_name": "Coda",
    "description": "Coda Browser Extension",
    "version": "2.0.0",
    "icons": {
        "256": "assets\/icon.png",
        "128": "assets\/icon-128.png",
        "16": "assets\/icon-128.png"
    },
    "background": {
        "matches": [
            "*:\/\/*.coda.io\/*",
            "*:\/\/coda.io\/*"
        ],
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.coda.io\/*",
                "*:\/\/coda.io\/*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "assets\/icon.png",
        "default_title": "View your docs",
        "default_popup": "popup.html"
    },
    "omnibox": {
        "keyword": "coda"
    },
    "permissions": [
        "cookies",
        "notifications",
        "storage",
        "tabs",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.coda.io\/",
        "*:\/\/coda.io\/"
    ]
}