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.
Cross-Origin-Fetch란 무엇입니까?
Cross-Origin-Fetch은(는) ladyrick에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use Cross-Origin Fetch, you can make cors fetch/request/ajax. Very convenient for self-make web tools to break cors limit."입니다.
확장 프로그램 스크린샷
Cross-Origin-Fetch 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Use Cross-Origin Fetch, you can make cors fetch/request/ajax. Very convenient for self-make web tools to break cors limit.
확장 프로그램 기본 정보
이름 | Cross-Origin-Fetch |
ID | kinhnahcpbhnjhimpbnhnhmobkpmgkok |
공식 URL | https://chromewebstore.google.com/detail/cross-origin-fetch/kinhnahcpbhnjhimpbnhnhmobkpmgkok |
설명 | Use Cross-Origin Fetch, you can make cors fetch/request/ajax. Very convenient for self-make web tools to break cors limit. |
파일 크기 | 32.05 KB |
설치 횟수 | 30 |
현재 버전 | 1.5 |
최근 업데이트 | 2020-10-27 |
출시 날짜 | 2020-09-17 |
개발자 | ladyrick |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ladyrick/cors-fetch |
도움말 페이지 URL | https://github.com/ladyrick/cors-fetch |
지원되는 언어 | 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" } ] } |