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/*)".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Intranet Filelink
قم بتنزيل ملفات الامتداد Intranet Filelink بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
معلومات أساسية عن التمديد
الاسم | |
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" ] } ] } |