ReproNow: Capture Screen + Network

Save time Reproducing and Triaging bugs

ReproNow: Capture Screen + Network란 무엇입니까?

ReproNow: Capture Screen + Network은(는) ReproNow에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save time Reproducing and Triaging bugs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ReproNow: Capture Screen + Network 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Record Screen and Network traffic and replay it in a super cool UI.

Features:
* A browser extension to capture Desktop and Network Traffic
* Has a responsive UI for Security Engineers to view and search 
* Hides the traffic inside a mkv/webm video files
* Works cross browser using extensibility API (currently supports Chrome and Opera, Firefox on roadmap)
* No server interaction, everything on client-side
* Exports request as cURL
* Stores history in Local Storage
* Multiple options to capture Network
* Open Source

This is a very useful tool for QA and for Bug Bounty Researchers.

Permission Explantation: 
- Read and change all data on all websites you visit
This permission is required to capture the network. There is no modification done. 
- Capture content of your screen.
This permission is required to capture your screen.

If the above permission scares you, feel free to review the code (linked below). We recommend you use the add-on in a testing account.

More info: https://github.com/VinayendraTN/ReproNow                    

확장 프로그램 기본 정보

이름 ReproNow: Capture Screen + Network ReproNow: Capture Screen + Network
ID bgnboagkkokloclccjpmamhfijeinnpc
공식 URL https://chromewebstore.google.com/detail/repronow-capture-screen-+/bgnboagkkokloclccjpmamhfijeinnpc
설명 Save time Reproducing and Triaging bugs
파일 크기 5.51 MB
설치 횟수 652
현재 버전 1.4
최근 업데이트 2020-11-28
출시 날짜 2018-01-28
평점 4.50/5 총 4 개의 평점
개발자 ReproNow
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/VinayendraTN/ReproNow
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ReproNow: Capture Screen + Network",
    "description": "Save time Reproducing and Triaging bugs",
    "short_name": "ReproNow",
    "version": "1.4",
    "manifest_version": 2,
    "icons": {
        "16": "ReproNow_Logo.png",
        "128": "ReproNow_Logo.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "ReproNow_Logo.png",
        "default_title": "ReproNow",
        "default_popup": "popup.html"
    },
    "permissions": [
        "unlimitedStorage",
        "storage",
        "desktopCapture",
        "webRequest",
        "",
        "tabs"
    ]
}