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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
        ]
    }
}