Intranet Filelink

This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)

什麼是Intranet Filelink?

Intranet Filelink是由bigpaperaeroplane開發的Chrome擴展程式,該擴展的主要功能是“This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)”。

擴展截圖

screenshot

下載Intranet Filelink擴展crx文件

下載Intranet Filelink擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)
Files are displayed within the browser - it is not possible to allow Chrome to open a file in File Explorer.
This extension has only been tested on Windows 10                    

擴展基本資訊

名稱 Intranet Filelink Intranet Filelink
ID jkfmlkhlofhjnfddfolhjeienilmlgdo
官方網址 https://chromewebstore.google.com/detail/intranet-filelink/jkfmlkhlofhjnfddfolhjeienilmlgdo
簡介 This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)
檔案大小 14.46 KB
安裝次數 166
目前版本 1.01
更新時間 2019-06-10
上架時間 2019-06-10
開發者 bigpaperaeroplane
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Intranet Filelink",
    "description": "This extension allows Chrome to open filelinks on the local intranet (*:\/\/*.local\/*)",
    "default_locale": "en",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "1.01",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html",
        "default_title": "Intranet Filelink"
    },
    "permissions": [
        "*:\/\/*.local\/*",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*.local\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}