Intranet Filelink
This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)
Qu'est-ce que Intranet Filelink ?
Intranet Filelink est une extension Chrome développée par bigpaperaeroplane, et sa fonction principale est "This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Intranet Filelink
Téléchargez les fichiers d'extension Intranet Filelink au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | jkfmlkhlofhjnfddfolhjeienilmlgdo |
URL Officiel | https://chromewebstore.google.com/detail/intranet-filelink/jkfmlkhlofhjnfddfolhjeienilmlgdo |
Description | This extension allows Chrome to open filelinks on the local intranet (*://*.local/*) |
Taille du Fichier | 14.46 KB |
Nombre d'Installations | 166 |
Version Actuelle | 1.01 |
Dernière Mise à Jour | 2019-06-10 |
Date de Publication | 2019-06-10 |
Développeur | bigpaperaeroplane |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |