moarTLS Analyzer

Analyze webpages for non-secure link references.

moarTLS Analyzer là gì?

moarTLS Analyzer là một tiện ích mở rộng Chrome được phát triển bởi https://www.bayden.com, và tính năng chính của nó là "Analyze webpages for non-secure link references.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng moarTLS Analyzer

Tải xuống các tệp mở rộng moarTLS Analyzer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        HTTPS only works if you use it! This simple Chrome extension adds a button to Chrome that allows you to easily discover non-secure (e.g. HTTP) links on your pages.

Simply click the moarTLS button and non-secure link references in the current page are flagged for review.

You can learn more about latent mixed-content vulnerabilities here: https://textslashplain.com/2016/03/17/seek-and-destroy-non-secure-references-using-the-moartls-analyzer/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên moarTLS Analyzer moarTLS Analyzer
ID ldfbacdbackkjhclmhnjabngnppnkagh
URL Chính Thức https://chromewebstore.google.com/detail/moartls-analyzer/ldfbacdbackkjhclmhnjabngnppnkagh
Mô tả Analyze webpages for non-secure link references.
Kích Thước Tệp 27.82 KB
Số Lần Cài Đặt 314
Phiên Bản Hiện Tại 1.0.0.1
Cập Nhật Lần Cuối 2021-02-24
Ngày Phát Hành 2017-10-24
Đánh Giá 4.89/5 Tổng số 9 Đánh Giá
Nhà Phát Triển https://www.bayden.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://textslashplain.com/2016/03/17/seek-and-destroy-non-secure-references-using-the-moartls-analyzer/
URL Trang Trợ Giúp https://textslashplain.com/2016/03/17/seek-and-destroy-non-secure-references-using-the-moartls-analyzer/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "moarTLS Analyzer",
    "short_name": "moarTLS",
    "description": "Analyze webpages for non-secure link references.",
    "version": "1.0.0.1",
    "author": "Eric Lawrence (@ericlaw)",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "minimum_chrome_version": "56",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "48.0"
        }
    },
    "minimum_edge_version": "38.14393.0.0",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+M"
            }
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "popup.html",
        "default_title": "Mark non-secure links"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "images\/SensitiveForm.png"
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "",
        "downloads"
    ]
}