CORS Helper
Lightweight CORS web development tool allows developers to modify Ajax responses Access-Control-Allow-Origin:*.
CORS Helper क्या है?
CORS Helper Atom द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Lightweight CORS web development tool allows developers to modify Ajax responses Access-Control-Allow-Origin:*."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में CORS Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Users can set different return values to allow users to be granted access to specified resources from different source servers. Users can customize the value of the HTTP response header It should be noted that when Access-Control-Allow-Origin is set to "*", the identity certificate cannot be attached. Of course you can specify a unique Origin such as http://localhost:3000 Instructions After installing the plugin, click the icon in the upper right corner to enable "cross-source resource sharing". Custom configuration After installing the plugin, click the icon in the upper right corner and click "Customize" to enter the configuration page. The "HTTP Response Header" page allows you to add custom Access-Control-* header information to the HTTP response header "White List" page allows you to customize the website for applying rules
एक्सटेंशन की मूल जानकारी
नाम | CORS Helper |
ID | jckpaobldaolbbchaeicopkcljcaiaka |
आधिकारिक URL | https://chromewebstore.google.com/detail/cors-helper/jckpaobldaolbbchaeicopkcljcaiaka |
विवरण | Lightweight CORS web development tool allows developers to modify Ajax responses Access-Control-Allow-Origin:*. |
फ़ाइल का आकार | 67.38 KB |
स्थापना संख्या | 4,335 |
वर्तमान संस्करण | 1.2.2 |
अंतिम अपडेट | 2019-06-14 |
प्रकाशन तिथि | 2019-06-11 |
रेटिंग | 3.67/5 कुल 3 रेटिंग्स |
डेवलपर | Atom |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CORS Helper", "description": "Lightweight CORS web development tool allows developers to modify Ajax responses Access-Control-Allow-Origin:*.", "version": "1.2.2", "homepage_url": "https:\/\/github.com\/jhrxx\/CORS-Chrome-extension", "default_locale": "en_US", "browser_action": { "default_icon": "off.png", "default_popup": "popup.html", "default_title": "Cross-Origin Settings" }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html", "chrome_style": false, "open_in_tab": true }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "storage", "webRequest", " |