Intranet Filelink

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

Intranet Filelinkคืออะไร?

Intranet Filelink เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bigpaperaeroplane และคุณลักษณะหลักของมันคือ "This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Intranet Filelink

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
            ]
        }
    ]
}