Request X
Intercept requests and cookies by flexible rules.
Τι είναι το Request X;
Το Request X είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον gera2ld, και η κύρια λειτουργία του είναι "Intercept requests and cookies by flexible rules.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Request X
Λήψη αρχείων επέκτασης Request X σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Source code: https://github.com/gera2ld/request-x Features: - Block requests by methods and URL patterns - Maintainable lists - Easy to share your lists with others - Redirect requests - Modify headers - Modify cookie properties like SameSite Use cases: - Debug APIs but avoid unexpected mutations - Block unwanted contents in an extremely flexible way - Set authorization header to avoid inputing username/password again and again - Set CORS header to allow certain cross-site requests without server changes - Change SameSite for old services to work on latest browsers - ... Tested on Chrome >= 70. It is highly recommended to use on latest versions.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Request X |
ID | cblonkdlnemhdeefhmaoiijjaedcphbf |
Επίσημο URL | https://chromewebstore.google.com/detail/request-x/cblonkdlnemhdeefhmaoiijjaedcphbf |
Περιγραφή | Intercept requests and cookies by flexible rules. |
Μέγεθος Αρχείου | 90.07 KB |
Αριθμός Εγκαταστάσεων | 5,047 |
Τρέχουσα Έκδοση | 2.5.2 |
Τελευταία Ενημέρωση | 2022-08-24 |
Ημερομηνία Δημοσίευσης | 2019-06-04 |
Αξιολόγηση | 4.83/5 Συνολικά 18 Αξιολογήσεις |
Προγραμματιστής | gera2ld |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/gera2ld/request-x |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/gera2ld/request-x/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Request X", "version": "2.5.2", "minimum_chrome_version": "50", "manifest_version": 2, "description": "Intercept requests and cookies by flexible rules.", "author": { "name": "Gerald", "url": "https:\/\/gerald.top" }, "icons": { "16": "public\/images\/icon_16.png", "48": "public\/images\/icon_48.png", "128": "public\/images\/icon_128.png" }, "default_locale": "en", "browser_action": { "browser_style": true, "default_icon": { "19": "public\/images\/icon_19.png", "38": "public\/images\/icon_38.png" }, "default_title": "Request X", "default_popup": "popup\/index.html" }, "background": { "scripts": [ "browser.js", "handler.js" ] }, "options_ui": { "page": "options\/index.html", "open_in_tab": true }, "devtools_page": "devtools\/index.html", "permissions": [ " |