Intranet Filelink

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

Intranet Filelink क्या है?

Intranet Filelink bigpaperaeroplane द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Intranet Filelink एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
            ]
        }
    ]
}