Intranet Filelink
This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)
Wat is Intranet Filelink?
Intranet Filelink is een Chrome-extensie ontwikkeld door bigpaperaeroplane, en de belangrijkste functie is "This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)".
Extensie Screenshots
Download het CRX-bestand van de extensie Intranet Filelink
Download Intranet Filelink-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | jkfmlkhlofhjnfddfolhjeienilmlgdo |
Officiële URL | https://chromewebstore.google.com/detail/intranet-filelink/jkfmlkhlofhjnfddfolhjeienilmlgdo |
Beschrijving | This extension allows Chrome to open filelinks on the local intranet (*://*.local/*) |
Bestandsgrootte | 14.46 KB |
Aantal Installaties | 166 |
Huidige Versie | 1.01 |
Laatst Bijgewerkt | 2019-06-10 |
Publicatiedatum | 2019-06-10 |
Ontwikkelaar | bigpaperaeroplane |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |