Opus Web Recorder

Document websites within chrome

Opus Web Recorder क्या है?

Opus Web Recorder opuseps द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Document websites within chrome"।

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

screenshot

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

crx प्रारूप में Opus Web Recorder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Create documentation for your Web Application by simply clicking through your workflows. Review your steps captured prior to editing your new document.


The Opus Web Recorder requires several Chrome permissions in order to accurately capture user interactions with a web application. Please review these permissions carefully as well as our Privacy Policy:
https://www.epiloguesystems.com/legal/terms-conditions


Requested Permissions:

tabs
Required to access to the url and title properties of your tabs during recording. The chrome.tabsTab to get tab information when use chrome.tabs methods

activeTab
Allows temporary access to the currently active tab when the user invokes the extension. We require this to record the current tab when starting a recording.


Grants the extension access to all hosts. This permission is required for Opus to seamlessly record any chrome tab that a user may switch to as part of recording their application workflow, including applications with embedded iframes that have a different origin than the host site.

storage
Allows Opus to temporarily store information about your recording such as the elements clicked on and the images captured for each action.

unlimitedStorage
This provides storage for HTML data captured during recording to accurately detect what control a user interacted with and to better identify web page uniqueness within an application workflow.

alarms
This allows for timed actions within the extension for uploading recording data, logs, and checking for pending recordings.

desktopCapture
This permission is required to capture an image of your screen in situations where the normal tabCapture method cannot return an accurate image such as in the case of native browser dialogs.

notifications
Required to notify users when they have recording pending and as steps are captured during a recording session.

system.memory
When debug logging is enabled from the extension settings, we use this permission to gather system memory information for Epilogue Support.

system.cpu
When debug logging is enabled from the extension settings, we use this permission to gather system cpu information for Epilogue Support.

system.display
When debug logging is enabled from the extension settings, we use this permission to gather information about your display for Epilogue Support.                    

एक्सटेंशन की मूल जानकारी

नाम Opus Web Recorder Opus Web Recorder
ID kgjcefhnfhpoodnfgndabophdflbngej
आधिकारिक URL https://chromewebstore.google.com/detail/opus-web-recorder/kgjcefhnfhpoodnfgndabophdflbngej
विवरण Document websites within chrome
फ़ाइल का आकार 6.32 MB
स्थापना संख्या 2,142
वर्तमान संस्करण 1.185.0
अंतिम अपडेट 2024-03-04
प्रकाशन तिथि 2020-06-29
रेटिंग 4.00/5 कुल 1 रेटिंग्स
डेवलपर opuseps
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://www.epiloguesystems.com/privacy-policy-2
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Opus Web Recorder",
    "version": "1.185.0",
    "manifest_version": 2,
    "description": "Document websites within chrome",
    "package_name": "opus-Web-Recorder",
    "browser_action": {
        "default_icon": "extension\/epilogue.png",
        "default_popup": "index.html"
    },
    "icons": {
        "16": "extension\/epilogue16.png",
        "48": "extension\/epilogue48.png",
        "128": "extension\/epilogue128.png"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "js": [
                "monitorEvents.js",
                "BootstrapTraining.js",
                "FoundationTraining.js",
                "MaterialTraining.js",
                "GwtTraining.js",
                "MappingRules.js",
                "findControlType.js",
                "findLabel.js",
                "peopleSoftTraining.js",
                "opusManualTraining.js",
                "manualTraining.js"
            ],
            "all_frames": true,
            "css": [
                "opusManualTraining.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "",
        "storage",
        "unlimitedStorage",
        "alarms",
        "desktopCapture",
        "notifications",
        "system.memory",
        "system.cpu",
        "system.display"
    ],
    "offline_enabled": true,
    "externally_connectable": {
        "matches": [
            "https:\/\/opuseps.com\/*",
            "https:\/\/*.dev-opuseps.com\/*",
            "https:\/\/dev-opuseps.com\/*",
            "https:\/\/*.qa-opuseps.com\/*",
            "https:\/\/qa-opuseps.com\/*",
            "https:\/\/*.test-opuseps.com\/*",
            "https:\/\/test-opuseps.com\/*",
            "https:\/\/*.opuseps.com\/*"
        ],
        "accept_tls_channel_id": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "assets\/BootstrapRules.json",
        "assets\/FoundationRules.json",
        "assets\/PeopleSoftRules.json",
        "assets\/MaterialRules.json",
        "assets\/GwtRules.json",
        "app\/host\/add-rule\/index.html"
    ]
}