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
What is Cross-Origin-AJAX-Bridge?
Cross-Origin-AJAX-Bridge is a Chrome extension developed by kjlmfe, and its main feature is "It's a chrome extension as a cross-origin ajax bridge. See more: https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge".
Download Cross-Origin-AJAX-Bridge Extension CRX File
Download Cross-Origin-AJAX-Bridge extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
It's a chrome extension as a cross-origin ajax bridge. See more: https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge
Extension Basic Information
Name | |
ID | ohlgghdnlpdhdokcdpmbdkgofblmoboh |
Official URL | https://chrome.google.com/webstore/detail/cross-origin-ajax-bridge/ohlgghdnlpdhdokcdpmbdkgofblmoboh |
Description | It's a chrome extension as a cross-origin ajax bridge. See more: https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge |
File Size | 60.06 KB |
Installation Count | 490 |
Current Version | 2.0 |
Last Updated | 2015-02-12 |
Publish Date | 2015-02-12 |
Rating | 5.00/5 Total 2 Ratings |
Developer | kjlmfe |
Payment Type | free |
Extension Website | https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge |
Help Page URL | https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge |
Supported Languages | 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" } ] } |