Intranet Filelink
This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)
Co to jest Intranet Filelink?
Intranet Filelink to rozszerzenie Chrome opracowane przez bigpaperaeroplane, a jego główną funkcją jest „This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Intranet Filelink
Pobierz pliki rozszerzeń Intranet Filelink w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | jkfmlkhlofhjnfddfolhjeienilmlgdo |
Oficjalny URL | https://chromewebstore.google.com/detail/intranet-filelink/jkfmlkhlofhjnfddfolhjeienilmlgdo |
Opis | This extension allows Chrome to open filelinks on the local intranet (*://*.local/*) |
Rozmiar pliku | 14.46 KB |
Liczba instalacji | 166 |
Aktualna Wersja | 1.01 |
Ostatnia Aktualizacja | 2019-06-10 |
Data Publikacji | 2019-06-10 |
Deweloper | bigpaperaeroplane |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |