Link Revealer

See the true URL for all links and improve your security!

Link Revealer là gì?

Link Revealer là một tiện ích mở rộng Chrome được phát triển bởi leocompson, và tính năng chính của nó là "See the true URL for all links and improve your security!".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Link Revealer 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

                        Link Revealer extension is designed to improve your online security. When you hover on any link element, the underlying - href - will be displayed as the link's title.  Moreover, a colored footer will also be displayed at the bottom of the page showing the link href.

If the domain of the link is similar to the page domain, this color will be BLUE. If the link is third-party the color is GREEN. For a situation where the displayed URL in the link's text-content is different than the underlying href, the footer color will be RED. The toolbar icon color will also be updated according to the above rules. 

For any link, if you right-click and select - Scan link for threats, the add-on scans the link with virustotal (https://www.virustotal.com/) JavaScript API. When you first install the add-on, please visit the options page to activate the virus check API. Once the API is activated you can scan 4 links per minute. From toolbar popup, you can also turn the add-on ON or OFF. Moreover, you can hide the page footer if you found it inconvenient. Please note that you can still scan links for threats even if the page footer is hidden.

If you have a feature request or found a bug to report, please fill the bug report form in the add-on's homepage (https://mybrowseraddon.com/link-revealer.html).                    

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

Tên Link Revealer Link Revealer
ID olajoinibmphanngkmckklcmkgckmaao
URL Chính Thức https://chromewebstore.google.com/detail/link-revealer/olajoinibmphanngkmckklcmkgckmaao
Mô tả See the true URL for all links and improve your security!
Kích Thước Tệp 98.3 KB
Số Lần Cài Đặt 318
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2022-06-21
Ngày Phát Hành 2020-04-19
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển leocompson
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://mybrowseraddon.com/link-revealer.html
URL Trang Trợ Giúp https://mybrowseraddon.com/link-revealer.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.2",
    "manifest_version": 3,
    "name": "Link Revealer",
    "short_name": "link-revealer",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/www.virustotal.com\/vtapi\/*"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/link-revealer.html",
    "description": "See the true URL for all links and improve your security!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "data\/content_script\/inject.css"
            ]
        }
    ],
    "action": {
        "default_title": "Link Revealer",
        "default_popup": "data\/popup\/popup.html",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": true,
            "run_at": "document_idle",
            "js": [
                "data\/content_script\/inject.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}