Office redirector

Changes links to office files to URI format which allows these files to be opened directly from the web or SharePoint.

Office redirectorとは何ですか?

Office redirectorはofficeredirectorによって開発されたChromeの拡張機能で、その主な機能は「Changes links to office files to URI format which allows these files to be opened directly from the web or SharePoint.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Office redirector拡張機能のCRXファイルをダウンロード

Office redirector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Allows office files to be opened directly from the web or older SharePoint versions by changing links to URI format. (SharePoint 2016 does this automatically). 

Supports:
  Powerpoint files (.ppt, .pptx, .pptm)
  Word files (.doc, .docx)
  Excel files (.xls, .xlsx)
  Visio files (.vsd, .vsdx, .vsdm)

How to use:
  After plugin is installed, you'll need to add your legacy sharepoint site urls to the list of sites by clicking on a plugin icon.

Version history:
  0.6: Visio files support added.
  0.7: Bug with loss of configuration upon browser restart is fixed.
  0.8: Removed unneeded permission and got rid of underscore.js
  0.9: Preparing to migrate to manifest v3

Based on [Chrome redirects extension](https://chrome.google.com/webstore/detail/switcheroo-redirector/cnmciclhnghalnpfhhleggldniplelbg?hl=en).                    

拡張機能の基本情報

名前 Office redirector Office redirector
ID kkjlehpaghmppmkfihgiejaaapgkinai
公式URL https://chromewebstore.google.com/detail/office-redirector/kkjlehpaghmppmkfihgiejaaapgkinai
説明 Changes links to office files to URI format which allows these files to be opened directly from the web or SharePoint.
ファイルサイズ 66.96 KB
インストール数 544
現在のバージョン 0.9
最終更新日 2022-08-24
公開日 2018-11-22
評価 5.00/5 合計 5 レビュー
開発者 officeredirector
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/imsh/OfficeRedirector
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Office redirector",
    "version": "0.9",
    "manifest_version": 2,
    "description": "Changes links to office files to URI format which allows these files to be opened directly from the web or SharePoint.",
    "browser_action": {
        "default_icon": "Office_redirector_16.png",
        "default_title": "Office redirector",
        "default_popup": "officeredirector.html"
    },
    "icons": {
        "16": "Office_redirector_16.png",
        "48": "Office_redirector_48.png",
        "128": "Office_redirector_128.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "",
        "storage"
    ],
    "background": {
        "scripts": [
            "RulesService.js",
            "RuleMatcher.js",
            "background.js"
        ]
    }
}