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

Apa itu Cross-Origin-AJAX-Bridge?

Cross-Origin-AJAX-Bridge adalah ekstensi Chrome yang dikembangkan oleh kjlmfe, dan fitur utamanya adalah "It's a chrome extension as a cross-origin ajax bridge. See more: https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge".

Unduh Berkas CRX Ekstensi Cross-Origin-AJAX-Bridge

Unduh file ekstensi Cross-Origin-AJAX-Bridge dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

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

Informasi Dasar Ekstensi

Nama Cross-Origin-AJAX-Bridge Cross-Origin-AJAX-Bridge
ID ohlgghdnlpdhdokcdpmbdkgofblmoboh
URL Resmi https://chrome.google.com/webstore/detail/cross-origin-ajax-bridge/ohlgghdnlpdhdokcdpmbdkgofblmoboh
Deskripsi It's a chrome extension as a cross-origin ajax bridge. See more: https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge
Ukuran File 60.06 KB
Jumlah Instalasi 490
Versi Saat Ini 2.0
Terakhir Diperbarui 2015-02-12
Tanggal Publikasi 2015-02-12
Penilaian 5.00/5 Total 2 Penilaian
Pengembang kjlmfe
Tipe Pembayaran free
Situs Ekstensi https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge
URL Halaman Bantuan https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge
Bahasa yang Didukung 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"
        }
    ]
}