Request Maker

Log, edit and send HTTP requests

Request Makerคืออะไร?

Request Maker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Juho Nurminen และคุณลักษณะหลักของมันคือ "Log, edit and send HTTP requests"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Request Maker

ดาวน์โหลดไฟล์ส่วนขยาย Request Maker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Version 0.1.2.16 adds proper browser action support since Chrome dropped the page action feature. Sorry for the delay, UI should now be easier to access!

* * *

Request Maker is a tool for penetration testing. With it you can easily capture requests made by web pages, tamper with the URL, headers and POST data and, of course, make new requests. Request Maker only captures requests sent via HTML forms and XMLHttpRequests; it doesn't fill the log with useless information about images and style sheets. The logs are tab-specific, displayed in the page action popup, and the requests are bookmarkable. After sending a request you can just click on the bookmark button like you would on any other page.

For quick access, bookmark this URL: chrome-extension://kajfghlhfkcocafkcjlajldicbikpgnp/rm.html

* * *

Known issues: 
- Due to built-in limitations in XHR, not all headers can be modified. See http://goo.gl/Woeao.
- XHR transparently follows redirects (as per http://goo.gl/mEwGh) without providing a way to retrieve the final URL. This sometimes causes incorrect rendering in the Document tab.

Questions? Problems? Suggestions? Bugs?
- You'll find my email address in the options page of the extension.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Request Maker Request Maker
ID kajfghlhfkcocafkcjlajldicbikpgnp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/request-maker/kajfghlhfkcocafkcjlajldicbikpgnp
คำอธิบาย Log, edit and send HTTP requests
ขนาดไฟล์ 138 KB
จำนวนการติดตั้ง 39,018
เวอร์ชันปัจจุบัน 0.1.2.16
อัปเดตครั้งล่าสุด 2017-03-08
วันที่เผยแพร่ 2017-03-08
คะแนน 3.48/5 รวมทั้งหมด 185 คะแนน
ผู้พัฒนา Juho Nurminen
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "injector.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Log, edit and send HTTP requests",
    "icons": {
        "128": "images\/128.png",
        "16": "images\/16.png",
        "48": "images\/48.png"
    },
    "incognito": "split",
    "manifest_version": 2,
    "name": "Request Maker",
    "options_page": "rm.html#options",
    "browser_action": {
        "default_icon": "images\/pageAction.png",
        "default_popup": "popup.html",
        "default_title": "View logged requests..."
    },
    "permissions": [
        "tabs",
        ""
    ],
    "version": "0.1.2.16",
    "web_accessible_resources": [
        "catcher.js"
    ]
}