Intranet Filelink

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

Intranet Filelink là gì?

Intranet Filelink là một tiện ích mở rộng Chrome được phát triển bởi bigpaperaeroplane, và tính năng chính của nó là "This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)".

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

screenshot

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

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

                        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                    

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

Tên Intranet Filelink Intranet Filelink
ID jkfmlkhlofhjnfddfolhjeienilmlgdo
URL Chính Thức https://chromewebstore.google.com/detail/intranet-filelink/jkfmlkhlofhjnfddfolhjeienilmlgdo
Mô tả This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)
Kích Thước Tệp 14.46 KB
Số Lần Cài Đặt 166
Phiên Bản Hiện Tại 1.01
Cập Nhật Lần Cuối 2019-06-10
Ngày Phát Hành 2019-06-10
Nhà Phát Triển bigpaperaeroplane
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}