tweak: mock and modify HTTP requests

Mock or modify your HTTP requests to test, develop and demo your web application

tweak: mock and modify HTTP requests क्या है?

tweak: mock and modify HTTP requests https://tweak-extension.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Mock or modify your HTTP requests to test, develop and demo your web application"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में tweak: mock and modify HTTP requests एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        tl;dr
tweak allows you to mock and modify HTTP requests without leaving the browser

You can intercept requests/API calls and 🪄
 ﹥ Modify
     ⁃  Response data and headers
     ⁃  Status code
     ⁃  Request payload 💸
     ⁃  Request headers 💸
 ﹥ Delay individual requests/API calls
 ﹥ Export and import rules to organize and share your configs with your team
 ﹥ Search requests in the background to import them automatically

Premium 💸
 ﹥ Modify the response data by writing custom JavaScript
 ﹥ Organize your workspace with collections 
 ﹥ Change rules in bulk using global custom variables
 ﹥ Create mock data with random generators
 ﹥ Use tweak’s breakpoints and logpoints to debug requests/API calls

What you CAN’T do with tweak 🚫
 ﹥ Replace documents such as HTML/CSS/Images

Useful links 🔗
 ﹥Getting started        https://tweak-extension.com/docs/intro
 ﹥FAQs                         https://tweak-extension.com/faqs
 ﹥Changelog               https://tweak-extension.com/changelog
 ﹥Support                    [email protected]                    

एक्सटेंशन की मूल जानकारी

नाम tweak: mock and modify HTTP requests tweak: mock and modify HTTP requests
ID feahianecghpnipmhphmfgmpdodhcapi
आधिकारिक URL https://chromewebstore.google.com/detail/tweak-mock-and-modify-htt/feahianecghpnipmhphmfgmpdodhcapi
विवरण Mock or modify your HTTP requests to test, develop and demo your web application
फ़ाइल का आकार 3.22 MB
स्थापना संख्या 37,933
वर्तमान संस्करण 8.2.0
अंतिम अपडेट 2024-01-08
प्रकाशन तिथि 2020-06-28
रेटिंग 4.64/5 कुल 127 रेटिंग्स
डेवलपर https://tweak-extension.com
ईमेल [email protected]
भुगतान के प्रकार in_app
एक्सटेंशन वेबसाइट https://tweak-extension.com/
सहायता पृष्ठ URL https://tweak-extension.com/#faqs-section
गोपनीयता नीति पृष्ठ URL https://tweak-extension.com/privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "tweak: mock and modify HTTP requests",
    "version": "8.2.0",
    "description": "Mock or modify your HTTP requests to test, develop and demo your web application",
    "background": {
        "service_worker": "service-worker.bundle.js"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-tweak-start.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "commands": {
        "toggle-tweak-enabled-state": {
            "suggested_key": {
                "default": "Ctrl+Shift+Comma"
            },
            "description": "Runs\/Stops the tweak browser extension."
        },
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Period"
            },
            "description": "Opens the extension popup."
        }
    },
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "intercept.bundle.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}