Copy as Python Requests

Copy requests from the devtools network panel as python requests code

Copy as Python Requestsคืออะไร?

Copy as Python Requests เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Peace-Maker และคุณลักษณะหลักของมันคือ "Copy requests from the devtools network panel as python requests code"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy as Python Requests

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

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

                        WebExtension to export traffic of a tab into ready to go Python Requests calls for faster traffic mimicing.

== Usage==

With the extension installed:
1. Open the Browser Devtools.
2. Click around and generate the requests you want to export (see Network tab in Devtools).
3. Click extension icon in toolbar at the top.
4. Copy desired Python requests code from popup.

== Features ==

- Generate Python code for every request observed by the open devtools.
- Configurable filters through extension options page:
    - Ignore requests to static resources by filtering response content-types.
    - Ignore auto-generated HTTP headers like User-Agent and Connection.
- Optionally hide blocked requests or 404 responses for requests e.g. for missing favicon.ico.
- Optionally generate a requests.session() instance.
    - Try to hide cookies set by a response from an earlier request in the session.

== Changelog ==
## 1.1.0 - 2023-01-16

### Added

- Add option to quickly disable the whole filter lists.
- Add option to render params, headers, cookies etc on separate lines.

### Changed

- Removed unneeded `host` permission. Apparently the devtools permission is enough to read the network HAR.
- Sort requests by start date if they aren't already.

### Fixed

- Fixed generating of `multipart/form-data` postData when the params aren't available in a pre-parsed form in the HAR.
- Fixed extension losing connection to devtools after some time of inactivity.                    

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

ชื่อ Copy as Python Requests Copy as Python Requests
ID dpmidpbjjakkboiogkpjcfmafjljenhe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-as-python-requests/dpmidpbjjakkboiogkpjcfmafjljenhe
คำอธิบาย Copy requests from the devtools network panel as python requests code
ขนาดไฟล์ 23.94 KB
จำนวนการติดตั้ง 2,396
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2023-01-18
วันที่เผยแพร่ 2022-07-27
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Peace-Maker
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/peace-maker/copy-as-python-requests
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy as Python Requests",
    "description": "Copy requests from the devtools network panel as python requests code",
    "version": "1.1",
    "author": "Jannik Hartung",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/logo-16.png",
        "32": "icons\/logo-32.png",
        "48": "icons\/logo-48.png",
        "96": "icons\/logo-96.png",
        "128": "icons\/logo-128.png"
    },
    "minimum_chrome_version": "88.0",
    "devtools_page": "devtools.html",
    "options_ui": {
        "browser_style": true,
        "open_in_tab": true,
        "page": "options.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "browser_style": true,
        "default_title": "Copy as Python Requests",
        "default_popup": "popup.html"
    }
}