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是由kjlmfe開發的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擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | ohlgghdnlpdhdokcdpmbdkgofblmoboh |
| 官方網址 | 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"
}
]
} | |