ReproNow: Capture Screen + Network

Save time Reproducing and Triaging bugs

ReproNow: Capture Screen + Network क्या है?

ReproNow: Capture Screen + Network ReproNow द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save time Reproducing and Triaging bugs"।

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

screenshot
screenshot

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

crx प्रारूप में ReproNow: Capture Screen + Network एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}