ADONIS Local Links

In Google Chrome, local files links are disabled, this extension enables you to open them and also ADONIS UNC paths.

ADONIS Local Links là gì?

ADONIS Local Links là một tiện ích mở rộng Chrome được phát triển bởi leomleao, và tính năng chính của nó là "In Google Chrome, local files links are disabled, this extension enables you to open them and also ADONIS UNC paths.".

Ả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 ADONIS Local Links

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

                        In Google Chrome, links to local files are disabled, unlike IE.
This extension allows you to open a link to a local file by clicking it.

This is a fork of the original extension, to specifically enable ADONIS links to open in Chrome.

[Security]
A malicious page can not open a local file without permission, because this extension reacts only to the click operation by the user.

[Others]
Personal information is not collected / used.
Source code is released to GitHub (see "Website" link).                    

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

Tên ADONIS Local Links ADONIS Local Links
ID pmbkecepkfjhbdllaohjjocimmlggfcd
URL Chính Thức https://chromewebstore.google.com/detail/adonis-local-links/pmbkecepkfjhbdllaohjjocimmlggfcd
Mô tả In Google Chrome, local files links are disabled, this extension enables you to open them and also ADONIS UNC paths.
Kích Thước Tệp 20.42 KB
Số Lần Cài Đặt 372
Phiên Bản Hiện Tại 0.6.3
Cập Nhật Lần Cuối 2020-06-19
Ngày Phát Hành 2020-06-19
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển leomleao
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/leomleao/chrome-extension_open-local-file-link
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ADONIS Local Links",
    "version": "0.6.3",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "In Google Chrome, local files links are disabled, this extension enables you to open them and also ADONIS UNC paths.",
    "icons": {
        "16": "icon\/icon-16x16.png",
        "32": "icon\/icon-32x32.png",
        "48": "icon\/icon-64x64.png",
        "128": "icon\/icon-128x128.png"
    },
    "permissions": [
        "https:\/\/svado01001\/*",
        "http:\/\/svado01001\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/svado01001\/*",
                "http:\/\/svado01001\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "minimum_chrome_version": "46.0"
}