Cross-Origin-AJAX-Bridge

It's a chrome extension as a cross-origin ajax bridge. See more: https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge

Cross-Origin-AJAX-Bridge là gì?

Cross-Origin-AJAX-Bridge là một tiện ích mở rộng Chrome được phát triển bởi kjlmfe, và tính năng chính của nó là "It's a chrome extension as a cross-origin ajax bridge. See more: https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge".

Tải xuống tệp CRX của tiện ích mở rộng Cross-Origin-AJAX-Bridge

Tải xuống các tệp mở rộng Cross-Origin-AJAX-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

                        It's a chrome extension as a cross-origin ajax bridge.

See more: https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge                    

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

Tên Cross-Origin-AJAX-Bridge Cross-Origin-AJAX-Bridge
ID ohlgghdnlpdhdokcdpmbdkgofblmoboh
URL Chính Thức https://chrome.google.com/webstore/detail/cross-origin-ajax-bridge/ohlgghdnlpdhdokcdpmbdkgofblmoboh
Mô tả It's a chrome extension as a cross-origin ajax bridge. See more: https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge
Kích Thước Tệp 60.06 KB
Số Lần Cài Đặt 490
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2015-02-12
Ngày Phát Hành 2015-02-12
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển kjlmfe
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge
URL Trang Trợ Giúp https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cross-Origin-AJAX-Bridge",
    "version": "2.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ]
}