FortiManager/FortiAnalyzer Debugger

Debug a FortiManager/FortiAnalyzer

Vad är FortiManager/FortiAnalyzer Debugger?

FortiManager/FortiAnalyzer Debugger är en Chrome-tillägg utvecklad av Fortinet, och dess huvudfunktion är "Debug a FortiManager/FortiAnalyzer".

Tilläggsskärmbilder

screenshot

Ladda ner FortiManager/FortiAnalyzer Debugger-förlängningens CRX-fil

Ladda ner FortiManager/FortiAnalyzer Debugger-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension allows for capturing detailed debug information of a FortiManager/FortiAnalyzer's graphical user interface. Requires FortiManager/FortiAnalyzer 6.4.0 GA or greater.

How to use this tool:

1. For capturing:
  a. Login any FortiManager/FortiAnalyzer that is latter than 6.4.0 GA, this extension color will turn blue (activated).
  b. Click this extension and select "New Capture"
  c. update the file name and select "Start Capture"
  d. FortiManager/FortiAnalyzer should prompt for permission, select "OK" to start capture debug information.
  e. A red record icon appears in the FortiManager/FortiAnalyzer toolbar.
  f. After finishing your operation, click the record icon to stop and download the captured zip file.

2. For viewing:
  a. Open this extension and select "View Existing Capture".
  b. Open the captured zip file in the newly open viewer tab.
  c. Start the video to view the operation and different captured information.                    

Grundläggande Information om Tillägg

Namn FortiManager/FortiAnalyzer Debugger FortiManager/FortiAnalyzer Debugger
ID dhdlbdcjpkjngafjclfegbbcajbfhlac
Officiell webbadress https://chromewebstore.google.com/detail/fortimanagerfortianalyzer/dhdlbdcjpkjngafjclfegbbcajbfhlac
Beskrivning Debug a FortiManager/FortiAnalyzer
Filstorlek 594 KB
Antal Installationer 3,003
Aktuell Version 1.0.2
Senast Uppdaterad 2021-05-07
Publiceringsdatum 2020-09-15
Betyg 5.00/5 Totalt 6 Betyg
Utvecklare Fortinet
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FortiManager\/FortiAnalyzer Debugger",
    "version": "1.0.2",
    "description": "Debug a FortiManager\/FortiAnalyzer",
    "content_scripts": [
        {
            "js": [
                "content-page.js"
            ],
            "run_at": "document_idle",
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background-script.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "FortiManager\/FortiAnalyzer Debugger",
        "default_icon": {
            "16": "assets\/fortimanager-grey-16.png",
            "24": "assets\/fortimanager-grey-24.png",
            "32": "assets\/fortimanager-grey-32.png"
        }
    },
    "icons": {
        "16": "assets\/fortimanager-blue-16.png",
        "32": "assets\/fortimanager-blue-32.png",
        "48": "assets\/fortimanager-blue-48.png",
        "128": "assets\/fortimanager-blue-128.png"
    },
    "web_accessible_resources": [
        "content-trampoline.html"
    ],
    "permissions": [
        "management",
        "system.cpu",
        "system.memory",
        "tabCapture",
        "",
        "downloads"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2
}