CORSet!
Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs.
CORSet! क्या है?
CORSet! Giuseppe Scotto Lavina द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में CORSet! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | CORSet! |
ID | oljdpckmidhdkppcbigjhbgahhillkoj |
आधिकारिक URL | https://chromewebstore.google.com/detail/corset/oljdpckmidhdkppcbigjhbgahhillkoj |
विवरण | Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs. |
फ़ाइल का आकार | 37.53 KB |
स्थापना संख्या | 57 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2021-09-24 |
प्रकाशन तिथि | 2021-09-24 |
रेटिंग | 5.00/5 कुल 7 रेटिंग्स |
डेवलपर | Giuseppe Scotto Lavina |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } |