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คืออะไร?

Cross-Origin-AJAX-Bridge เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kjlmfe และคุณลักษณะหลักของมันคือ "It's a chrome extension as a cross-origin ajax bridge. See more: https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cross-Origin-AJAX-Bridge

ดาวน์โหลดไฟล์ส่วนขยาย Cross-Origin-AJAX-Bridge ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 Cross-Origin-AJAX-Bridge
ID ohlgghdnlpdhdokcdpmbdkgofblmoboh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/cross-origin-ajax-bridge/ohlgghdnlpdhdokcdpmbdkgofblmoboh
คำอธิบาย It's a chrome extension as a cross-origin ajax bridge. See more: https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge
ขนาดไฟล์ 60.06 KB
จำนวนการติดตั้ง 490
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2015-02-12
วันที่เผยแพร่ 2015-02-12
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา kjlmfe
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge
URL หน้าช่วยเหลือ https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge
ภาษาที่รองรับ 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"
        }
    ]
}