CORSet!
Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs.
CORSet! là gì?
CORSet! là một tiện ích mở rộng Chrome được phát triển bởi Giuseppe Scotto Lavina, và tính năng chính của nó là "Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng CORSet!
Tải xuống các tệp mở rộng CORSet! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Allows to make cross domain request with the MV3 API only on user's selected tabs. (https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) Click on the extension's icon to enable/disable CORSet on the current tab. A small icon will be placed on the bottom-right side of the screen to remind you that CORSet is active on the current tab. Browsing the WWW with CORS hurts really bad your system security, enable it just for development and on tabs where you really need it. Required Chrome 90+ Icon made by Those Icons from www.flaticon.com
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | CORSet! |
ID | oljdpckmidhdkppcbigjhbgahhillkoj |
URL Chính Thức | https://chromewebstore.google.com/detail/corset/oljdpckmidhdkppcbigjhbgahhillkoj |
Mô tả | Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs. |
Kích Thước Tệp | 37.53 KB |
Số Lần Cài Đặt | 57 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2021-09-24 |
Ngày Phát Hành | 2021-09-24 |
Đánh Giá | 5.00/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Giuseppe Scotto Lavina |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CORSet!", "description": "Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs.", "version": "1.0.0", "author": "Giuseppe Scotto Lavina", "manifest_version": 3, "minimum_chrome_version": "90.0", "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'", "sandbox": "sandbox; script-src 'self'; object-src 'self'" }, "background": { "type": "module", "service_worker": "\/corset.js" }, "permissions": [ "storage", "scripting", "webNavigation", "declarativeNetRequest" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "action": { "default_title": "Click to enable.", "default_icon": { "16": "\/icons\/corset-16.png", "32": "\/icons\/corset-32.png", "64": "\/icons\/corset-64.png", "128": "\/icons\/corset-128.png" } }, "icons": { "16": "\/icons\/corset-active-16.png", "32": "\/icons\/corset-active-32.png", "64": "\/icons\/corset-active-64.png", "128": "\/icons\/corset-active-128.png" } } |