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 |
官方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" } ] } |