File Name Correction for Dynamics 365
Ensures files are given proper names when downloaded.
File Name Correction for Dynamics 365とは何ですか?
File Name Correction for Dynamics 365はJared Chavezによって開発されたChromeの拡張機能で、その主な機能は「Ensures files are given proper names when downloaded.」です。
拡張機能のスクリーンショット
File Name Correction for Dynamics 365拡張機能のCRXファイルをダウンロード
File Name Correction for Dynamics 365拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This Chrome extension solves a file name issue caused by a bug between Microsoft Dynamics 365 and Chrome itself. When downloading files from Dynamics, Chrome will wrap the file name in single quotes, causing it to become an invalid file. This extension removes those quotes, allowing the end user's machine to determine which application can open the file. For example: A downloaded file from Dynamics will download as 'Example.xlsx' making it invalid. This extension will rename the file from 'Example.xlsx' to Example.xlsx, allowing it be opened by the end user's computer. This extension is open to the public, and does not collect any usage data. Should any issues occur, please reach out to me at [email protected].
拡張機能の基本情報
名前 | File Name Correction for Dynamics 365 |
ID | lignifepbjcegfaelljjjejlahcnjden |
公式URL | https://chromewebstore.google.com/detail/file-name-correction-for/lignifepbjcegfaelljjjejlahcnjden |
説明 | Ensures files are given proper names when downloaded. |
ファイルサイズ | 49.16 KB |
インストール数 | 113 |
現在のバージョン | 1.2 |
最終更新日 | 2020-06-18 |
公開日 | 2020-06-17 |
開発者 | Jared Chavez |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "File Name Correction for Dynamics 365", "short_name": "Dynamics 365 File Name Correction", "description": "Ensures files are given proper names when downloaded.", "version": "1.2", "manifest_version": 2, "icons": { "16": "logo16.png", "48": "logo32.png", "128": "logo128.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "WrapperRemoval.js" ], "persistent": false }, "permissions": [ "downloads" ] } |