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
Wat is Cross-Origin-AJAX-Bridge?
Cross-Origin-AJAX-Bridge is een Chrome-extensie ontwikkeld door kjlmfe, en de belangrijkste functie is "It's a chrome extension as a cross-origin ajax bridge. See more: https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge".
Download het CRX-bestand van de extensie Cross-Origin-AJAX-Bridge
Download Cross-Origin-AJAX-Bridge-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
It's a chrome extension as a cross-origin ajax bridge.
See more: https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge Basisinformatie over de Extensie
| Naam | |
| ID | ohlgghdnlpdhdokcdpmbdkgofblmoboh |
| Officiële URL | https://chrome.google.com/webstore/detail/cross-origin-ajax-bridge/ohlgghdnlpdhdokcdpmbdkgofblmoboh |
| Beschrijving | It's a chrome extension as a cross-origin ajax bridge. See more: https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge |
| Bestandsgrootte | 60.06 KB |
| Aantal Installaties | 490 |
| Huidige Versie | 2.0 |
| Laatst Bijgewerkt | 2015-02-12 |
| Publicatiedatum | 2015-02-12 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | kjlmfe |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge |
| Help Pagina-URL | https://github.com/KJlmfe/Cross-Origin-AJAX-Bridge |
| Ondersteunde Talen | 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"
}
]
} | |