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?

ADONIS Local Links是由leomleao开发的Chrome扩展程序,该扩展的主要功能是“In Google Chrome, local files links are disabled, this extension enables you to open them and also ADONIS UNC paths.”。

扩展截图

screenshot
screenshot

下载ADONIS Local Links扩展crx文件

下载ADONIS Local Links扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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).                    

扩展基本信息

名称 ADONIS Local Links ADONIS Local Links
ID pmbkecepkfjhbdllaohjjocimmlggfcd
官方URL https://chromewebstore.google.com/detail/adonis-local-links/pmbkecepkfjhbdllaohjjocimmlggfcd
简介 In Google Chrome, local files links are disabled, this extension enables you to open them and also ADONIS UNC paths.
文件大小 20.42 KB
安装次数 372
当前版本 0.6.3
更新时间 2020-06-19
上架时间 2020-06-19
评分 1.00/5 共1次评分
开发者 leomleao
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/leomleao/chrome-extension_open-local-file-link
支持的语言 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"
}