Chrome Platform Bridge

Chrome Platform Bridge

Chrome Platform Bridge là gì?

Chrome Platform Bridge là một tiện ích mở rộng Chrome được phát triển bởi Morten Frederiksen, và tính năng chính của nó là "Chrome Platform Bridge".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chrome Platform Bridge

Tải xuống các tệp mở rộng Chrome Platform Bridge 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

                        What is this project about? This project demonstrates a bridge from JavaScript to the platform hosting the browser.

What can it be used for? The bridging functionallity can be used to mix a typically web-app and local resources. The resources could be: the file system, a hardware device or some legacy software.

Project site: https://github.com/frederiksen/chrome-platform-bridge                    

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

Tên Chrome Platform Bridge Chrome Platform Bridge
ID cbfkjbjjmhgmlalmjpmfjpeekkkjneia
URL Chính Thức https://chromewebstore.google.com/detail/chrome-platform-bridge/cbfkjbjjmhgmlalmjpmfjpeekkkjneia
Mô tả Chrome Platform Bridge
Kích Thước Tệp 7.7 KB
Số Lần Cài Đặt 138
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2018-08-01
Ngày Phát Hành 2018-08-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Morten Frederiksen
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/frederiksen/chrome-platform-bridge
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Platform Bridge",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "1.0.0",
    "description": "Chrome Platform Bridge",
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "nativeMessaging"
    ]
}