Intranet Filelink

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

What is Intranet Filelink?

Intranet Filelink is a Chrome extension developed by bigpaperaeroplane, and its main feature is "This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)".

Extension Screenshots

screenshot

Download Intranet Filelink Extension CRX File

Download Intranet Filelink extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Intranet Filelink Intranet Filelink
ID jkfmlkhlofhjnfddfolhjeienilmlgdo
Official URL https://chromewebstore.google.com/detail/intranet-filelink/jkfmlkhlofhjnfddfolhjeienilmlgdo
Description This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)
File Size 14.46 KB
Installation Count 166
Current Version 1.01
Last Updated 2019-06-10
Publish Date 2019-06-10
Developer bigpaperaeroplane
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}