Redpen: Report bugs with screenshot/recording

Capture screenshot and record screen to report bugs and visual feedback.

Co je Redpen: Report bugs with screenshot/recording?

Redpen: Report bugs with screenshot/recording je rozšíření Chrome vyvinuté https://redpen.ai, a jeho hlavní funkcí je „Capture screenshot and record screen to report bugs and visual feedback.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Redpen: Report bugs with screenshot/recording

Stáhněte si soubory rozšíření Redpen: Report bugs with screenshot/recording ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        The easiest way to send feedback and report bugs is, take screenshots or record screens of any website or desktop application, highlight issues using annotation tools, and submit them to your favorite issues tracking service.

💁 Helpful for
• Quality analysts, developers, designers, product managers, web agencies, consulting companies, product companies, and many more…
• All-in-one feedback and bug reporting tool useful in customer support, UAT & Beta testing, and product development.

🔑 Key Benefits
• Faster time to market - By reducing product development time by eliminating back-and-forth communication between teams.
• Increase customer satisfaction - By faster turnaround of bugs or feedback submitted by customers.
• Save Cost - By minimizing the development and support costs.

📋 Features
✪ Screenshot & Annotation tools
• Take screenshots of any web page of a website or desktop screen and highlight issues using annotation tools.

✪ Screen recording & Voice comments
• Record and explain issues visually on the web page or desktop screen with voice comments and annotation tools.
• Double click the Redpen extension to start recording the screen.

✪ Auto-capture technical details
• Minimize troubleshooting time with auto-collected browser or desktop-specific metadata.
• Collect technical metadata like OS details, browser details, screen size, console logs, network logs, cookies, local storage, IndexedDB, etc.

✪ Auto-fill templates
• Report bugs faster with pre-defined templates. While reporting bugs, auto-populate the common form fields to eliminate field selection every time.

✪ Widget
• Add Redpen Widget to your website to capture unlimited feedback.

🧰 Integrations
• Jira Software
• Jira Service Desk
• Azure DevOps

🛠 Redpen applications/tools
• Browser Extensions - Chrome, Edge, Safari
• Desktop applications - Windows, Mac
• See others at https://www.redpen.ai/downloads

$ Pricing & Plan
• Our individual plan is FREE FOREVER.
• Plans start at $5 a month.
• Visit Customer Support Request and Bug Capture Platform - Redpen to start your 14-days free trial (no credit card required).                    

Základní Informace o Rozšíření

Název Redpen: Report bugs with screenshot/recording Redpen: Report bugs with screenshot/recording
ID jaemdkifbanjcbchakllpngalackncfb
Oficiální URL https://chromewebstore.google.com/detail/redpen-report-bugs-with-s/jaemdkifbanjcbchakllpngalackncfb
Popis Capture screenshot and record screen to report bugs and visual feedback.
Velikost souboru 919 KB
Počet instalací 349
Aktuální Verze 1.0.76
Poslední Aktualizace 2023-03-02
Datum Vydání 2021-08-08
Hodnocení 5.00/5 Celkem 14 Hodnocení
Vývojář https://redpen.ai
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.redpen.ai/?utm_source=chrome_extension&utm_medium=marketplace&utm_campaign=integration
URL Stránky Nápovědy https://www.redpen.ai/docs?utm_source=chrome_extension&utm_medium=marketplace&utm_campaign=integration
URL Stránky Zásad Ochrany Soukromí https://www.ajmerainfotech.com/privacy?utm_source=chrome_extension&utm_medium=marketplace&utm_campaign=integration&app=redpen
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Redpen: Report bugs with screenshot\/recording",
    "version": "1.0.76",
    "offline_enabled": true,
    "manifest_version": 2,
    "description": "Capture screenshot and record screen to report bugs and visual feedback.",
    "browser_action": {
        "default_icon": {
            "16": ".\/assets\/logo_16.png",
            "48": ".\/assets\/logo_48.png",
            "64": ".\/assets\/logo_64.png",
            "128": ".\/assets\/logo_128.png"
        },
        "default_title": "Redpen - click to capture (Alt+Shift+X), double click to record (Alt+Shift+D)"
    },
    "background": {
        "scripts": [
            ".\/js\/background.js"
        ]
    },
    "icons": {
        "16": ".\/assets\/logo_16.png",
        "48": ".\/assets\/logo_48.png",
        "64": ".\/assets\/logo_64.png",
        "128": ".\/assets\/logo_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.redpen.ai\/*"
            ],
            "js": [
                ".\/js\/redpenContentScript.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/js\/detect.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/app.redpen.ai\/*"
            ],
            "js": [
                ".\/js\/consoleScriptInjector.js",
                ".\/js\/displayInfoContentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "\/css\/screenrecorder\/content.css",
        "html\/camera.html",
        "html\/sources.html",
        "html\/settings.html",
        "html\/recordingSettingsDialog.html",
        "js\/recordingSettingsScript.js",
        "js\/videoContentScript.js",
        "css\/content.css",
        "css\/recordingSettings.css",
        "assets\/images\/*",
        "js\/sources.js",
        "js\/camera.js",
        "js\/libraries\/plyr.min.js",
        "css\/libraries\/plyr.min.css",
        "js\/browserConsoleReader.js"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "",
        "tabCapture",
        "activeTab",
        "tabs",
        "storage",
        "history",
        "webRequest"
    ],
    "commands": {
        "redpen_capture": {
            "suggested_key": {
                "default": "Alt+Shift+X",
                "mac": "Alt+Shift+X"
            },
            "description": "Capture a screenshot"
        },
        "redpen_video_record": {
            "suggested_key": {
                "default": "Alt+Shift+D",
                "mac": "Alt+Shift+D"
            },
            "description": "Record a video"
        }
    }
}