Cross-Origin-Fetch
Use Cross-Origin Fetch, you can make cors fetch/request/ajax. Very convenient for self-make web tools to break cors limit.
What is Cross-Origin-Fetch?
Cross-Origin-Fetch is a Chrome extension developed by ladyrick, and its main feature is "Use Cross-Origin Fetch, you can make cors fetch/request/ajax. Very convenient for self-make web tools to break cors limit.".
Extension Screenshots
Download Cross-Origin-Fetch Extension CRX File
Download Cross-Origin-Fetch 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
Use Cross-Origin Fetch, you can make cors fetch/request/ajax. Very convenient for self-make web tools to break cors limit.
Extension Basic Information
Name | Cross-Origin-Fetch |
ID | kinhnahcpbhnjhimpbnhnhmobkpmgkok |
Official URL | https://chromewebstore.google.com/detail/cross-origin-fetch/kinhnahcpbhnjhimpbnhnhmobkpmgkok |
Description | Use Cross-Origin Fetch, you can make cors fetch/request/ajax. Very convenient for self-make web tools to break cors limit. |
File Size | 32.05 KB |
Installation Count | 30 |
Current Version | 1.5 |
Last Updated | 2020-10-27 |
Publish Date | 2020-09-17 |
Developer | ladyrick |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ladyrick/cors-fetch |
Help Page URL | https://github.com/ladyrick/cors-fetch |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cross-Origin-Fetch", "version": "1.5", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ] } |