NX Enhanced

Adds quality-of-life features to NextDNS website for a more practical usability

NX Enhanced란 무엇입니까?

NX Enhanced은(는) BLBC에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds quality-of-life features to NextDNS website for a more practical usability"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

NX Enhanced 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Current features:


Logs page:
----------------

* Allow/Deny buttons in the logs that make it possible to add an exception or block a domain without needing to copy, switch pages, and paste   

* Specify domains that should be hidden from the logs, enabling you to filter out noisy or irrelevant domains

* Ability to load only the logs that happened before a specified date-time

* Option to show only queries from unnamed devices   

* Refine a search with multiple search terms or exclusion terms

* An option to show the number of entries currently loaded, either visible or hidden by filters    

* Show the query's absolute time (HH:MM:SS) along with the relative time ("a minute ago", "few seconds ago")   

* Relative time that counts minutes, then hours, and goes up to "Yesterday"

* A refresh button    


Allowlist/Denylist pages:
----------------

* Add a description for each domain in the allow/denylists

* Add a list of domains, instead of one by one

* Sort the allow/deny lists alphabetically   

* Styling options for the domains for an easier quick reading, such as: lighten subdomains, bold root domain and right-align


Settings page:
----------------

* Ability to export/import all settings from/to a config


Privacy page:
----------------

* Collapse the list of blocklists enabled and adds a button to expand them if needed    

* Sort alphabetically the list of blocklists in the "Add a blocklist" screen


Security page:
----------------

* Collapse the list of added TLDs and adds a button to expand them if needed

* A button that allows you to add every TLD in the "Add a TLD" screen in one click                    

확장 프로그램 기본 정보

이름 NX Enhanced NX Enhanced
ID ljimbekophocjbnphldoaidgkkaojcfo
공식 URL https://chrome.google.com/webstore/detail/nx-enhanced/ljimbekophocjbnphldoaidgkkaojcfo
설명 Adds quality-of-life features to NextDNS website for a more practical usability
파일 크기 32.98 KB
설치 횟수 1,456
현재 버전 5.1
최근 업데이트 2023-03-25
출시 날짜 2021-03-08
평점 4.67/5 총 15 개의 평점
개발자 BLBC
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/hjk789/NXEnhanced
도움말 페이지 URL https://github.com/hjk789/NXEnhanced/issues
개인정보 보호 정책 페이지 URL https://github.com/hjk789/NXEnhanced/wiki/Privacy-Policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NX Enhanced",
    "version": "5.1",
    "description": "Adds quality-of-life features to NextDNS website for a more practical usability",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/my.nextdns.io\/*",
                "https:\/\/api.nextdns.io\/*"
            ],
            "js": [
                "utils.js",
                "NXEnhanced.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options-page.html"
    },
    "browser_action": {
        "default_title": "NX Enhanced",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    }
}