Link Alert

This extension displays an icon next to the cursor indicating the target of a link

Link Alert là gì?

Link Alert là một tiện ích mở rộng Chrome được phát triển bởi ahallicks, và tính năng chính của nó là "This extension displays an icon next to the cursor indicating the target of a link".

Ả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 Link Alert

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

                        Links haven't changed since their inception a long time ago. These days a link can take you just about anywhere. Wouldn't it be really handy if you had some indication of what you were clicking on? With Link Alert you do! It'll highlight links with a little tooltip indicating where the link is likely to take you. For example, links to PDFs show a small PDF icon in the tooltip, external links show an icon and you can even see which links aren't secure from secure pages.

You have the option to select which icons are shown as well as changing some aspects of the display of the tooltip, such as the background and border colours.

The extension will also be updated regularly to include new icons and options. Updates can be found from the options for the extension.                    

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

Tên Link Alert Link Alert
ID eknafmldgjmnogakliocedghchbkdehb
URL Chính Thức https://chromewebstore.google.com/detail/link-alert/eknafmldgjmnogakliocedghchbkdehb
Mô tả This extension displays an icon next to the cursor indicating the target of a link
Kích Thước Tệp 289 KB
Số Lần Cài Đặt 568
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2014-09-16
Ngày Phát Hành 2014-09-16
Đánh Giá 4.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển ahallicks
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://bitbucket.org/ahallicks/link-alert/issues
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Alert",
    "description": "This extension displays an icon next to the cursor indicating the target of a link",
    "version": "1.1.1",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "http:\/\/127.0.0.1\/*",
        "http:\/\/localhost\/*",
        "notifications",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icons\/main\/icon-on.png",
            "38": "icons\/main\/icon-38-on.png"
        },
        "default_title": "Link Alert is running"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/LinkAlert.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icons\/main\/icon.png",
        "32": "icons\/main\/icon-38.png",
        "48": "icons\/main\/icon-64.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "icons\/links\/aim-icon.png",
        "icons\/links\/app-icon.png",
        "icons\/links\/aud-icon.png",
        "icons\/links\/code-icon.png",
        "icons\/links\/codepen-icon.png",
        "icons\/links\/css-icon.png",
        "icons\/links\/doc-icon.png",
        "icons\/links\/external-icon.png",
        "icons\/links\/facebook-icon.png",
        "icons\/links\/file-icon.png",
        "icons\/links\/ftp-icon.png",
        "icons\/links\/github-icon.png",
        "icons\/links\/google-icon.png",
        "icons\/links\/icq-icon.png",
        "icons\/links\/img-icon.png",
        "icons\/links\/internal-icon.png",
        "icons\/links\/jsbin-icon.png",
        "icons\/links\/jse-icon.png",
        "icons\/links\/jsfiddle-icon.png",
        "icons\/links\/jsp-icon.png",
        "icons\/links\/linkedin-icon.png",
        "icons\/links\/mail-icon.png",
        "icons\/links\/new-icon.png",
        "icons\/links\/pdf-icon.png",
        "icons\/links\/phone-icon.png",
        "icons\/links\/pinterest-icon.png",
        "icons\/links\/ppt-icon.png",
        "icons\/links\/refresh-icon.png",
        "icons\/links\/reg-icon.png",
        "icons\/links\/rss-icon.png",
        "icons\/links\/secure-icon.png",
        "icons\/links\/store-icon.png",
        "icons\/links\/swf-icon.png",
        "icons\/links\/torrent-icon.png",
        "icons\/links\/tumblr-icon.png",
        "icons\/links\/txt-icon.png",
        "icons\/links\/twitter-icon.png",
        "icons\/links\/unsecure-icon.png",
        "icons\/links\/vid-icon.png",
        "icons\/links\/wikipedia-icon.png",
        "icons\/links\/xls-icon.png",
        "icons\/links\/xpi-icon.png",
        "icons\/links\/youtube-icon.png",
        "icons\/links\/zip-icon.png",
        "icons\/main\/icon-64.png"
    ],
    "options_page": "options.html",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            }
        }
    }
}