Intranet Filelink
This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)
Intranet Filelinkとは何ですか?
Intranet Filelinkはbigpaperaeroplaneによって開発されたChromeの拡張機能で、その主な機能は「This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)」です。
拡張機能のスクリーンショット
Intranet Filelink拡張機能のCRXファイルをダウンロード
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
拡張機能の基本情報
名前 | |
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 |
Eメール | [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" ] } ] } |