Copy as Python Requests

Copy requests from the devtools network panel as python requests code

Copy as Python Requests란 무엇입니까?

Copy as Python Requests은(는) Peace-Maker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy requests from the devtools network panel as python requests code"입니다.

확장 프로그램 스크린샷

screenshot

Copy as Python Requests 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}