Nessus Improvements

UI improvements for Tenable Nessus

Nessus Improvements란 무엇입니까?

Nessus Improvements은(는) https://mythofechelon.co.uk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "UI improvements for Tenable Nessus"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Nessus Improvements 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Currently, this changes the following:
	• Fixes clickable height of "Back to" link.
	• Adds links to table name cells so that they can be middle- and right-clicked to open in new tabs.
	• Adds button to scans to copy a file name. This also automatically replaces Windows invalid characters (refer to https://mythofechelon.co.uk/blog/2020/3/6/how-to-work-around-windows-restricted-characters).
	• Makes scan and vulnerability table columns more space efficient by decreasing the width of some and removing redundant ones.
	• Moves notifications so that individual or multiple notifications don't block the buttons or sub-buttons.
	• Removes maximum width limitation on scan title headings.
	• Increases width of scan configuration input fields.
	• Enables resizing of textareas.

By default, only works with the URL https://localhost:8834/ because using broader permissions requires manual reviewing which increases the publishing time enormously (from minutes to days or even weeks). If you use a custom URL (DNS name and/or port), do the following:
	1. Close all instances of Google Chrome. This writes the latest configurations.
	2. Edit the file "%localAppData%\Google\Chrome\User Data\Default\Preferences"*. 
	3. Do a find-and-replace-all using the following parameters (including the quotation marks):
		• Find: "https://localhost:8834/*"
		• Replace with (option #1): "https://localhost:8834/*","https://YOUR_URL/*"
		• Replace with (option #2): "https://*:8834/*"

Last tested on Nessus Professional version 8.10.1 (latest as of 2020/06/25).

Changelog / version history is available at "%localAppData%\Google\Chrome\User Data\Default\Extensions\dbnnngkmpjaigkjjikdmihpocggbglgg\\notes\Version History.txt"*.

* The folder "Default" may be named something like "Profile 1" if you have multiple profiles.                    

확장 프로그램 기본 정보

이름 Nessus Improvements Nessus Improvements
ID dbnnngkmpjaigkjjikdmihpocggbglgg
공식 URL https://chromewebstore.google.com/detail/nessus-improvements/dbnnngkmpjaigkjjikdmihpocggbglgg
설명 UI improvements for Tenable Nessus
파일 크기 19.46 KB
설치 횟수 82
현재 버전 1.12.617
최근 업데이트 2020-06-27
출시 날짜 2020-06-26
개발자 https://mythofechelon.co.uk
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nessus Improvements",
    "description": "UI improvements for Tenable Nessus",
    "icons": {
        "16": "images\/Tenable Nessus+ icon (16x16).png",
        "48": "images\/Tenable Nessus+ icon (48x48).png",
        "128": "images\/Tenable Nessus+ icon (128x128).png"
    },
    "version": "1.12.617",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/localhost:8834\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/nessus_contentScript.js"
            ],
            "css": [
                "css\/nessus.css"
            ],
            "matches": [
                "https:\/\/localhost:8834\/*"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/nessus_Background.js"
        ],
        "persistent": false
    }
}