MS Doc Link

Handle MS Office Document links in a better way

什么是MS Doc Link?

MS Doc Link是由stocki87开发的Chrome扩展程序,该扩展的主要功能是“Handle MS Office Document links in a better way”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载MS Doc Link扩展crx文件

下载MS Doc Link扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This Extension provides several options for handling/opening Microsoft Office Documents. In the default mode you can only open the documents via opening the context menu on a hyperlink on a web page, which points to either a Microsoft Word, Excel, PowerPoint or Visio file.

You can however use several other options via the Extension menu (click on the icon)

The usable options are the following:
=> activate a link history
   Each time a document link is opened a history entry is created. 
   (The history can be accessed via the extension menu or via the context menu 
   action)

=> Choose a custom action for a left mouse click on a document link
  - Open online
  - Open in protected mode (Desktop application)
  - Open in edit mode (Desktop application)
  - Download file
  - ...

=> Choose a custom copy to clipboard action for the option popover, the extension menu and the history/favorites page

=> Create Favorites from your history

=> Access Favorites and your recent history (up to the last 20 entries)

Context Menu Actions on the page
--------------------------------
- Perform file action during click on office link
- Open favorites/history page (click somewhere on the page)

Context Menu Actions on the Extension Icon
-------------------------------------------
- Open favorites/history page

IMPORTANT NOTES:
- The extension settings are synced to your google account
- The history/favorites are only stored in the local storage of the browser
- The extension uses the Microsoft Office URI protocols for opening documents. Depending on web server where the file is stored, this may or may not work. The extension was designed primarily for the use in Microsoft SharePoint sites, but may also work elsewhere

Supported Document formats:
--------------------------------------
- Word:       *.doc, *.docx, *.docm
- Excel:      *.xls, *.xlsx, *.xlsm, *.xlsb, *.csv
- PowerPoint: *.ppt, *.pptx, *.pptm
- Visio: *.vsd, *.vsdx, *.vsdm, *.vssx, *.vssm, *.vstx,  *.vstm                    

扩展基本信息

名称 MS Doc Link MS Doc Link
ID khildacmciagghamickjajfmhcbnkjhp
官方URL https://chromewebstore.google.com/detail/ms-doc-link/khildacmciagghamickjajfmhcbnkjhp
简介 Handle MS Office Document links in a better way
文件大小 492 KB
安装次数 4,247
当前版本 1.3.1
更新时间 2019-08-21
上架时间 2019-08-21
评分 3.86/5 共7次评分
开发者 stocki87
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/stockbal/msofficelink-ext/blob/master/README.md
支持的语言 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.3.1",
    "icons": {
        "16": "icons\/Icon16.png",
        "32": "icons\/Icon32.png",
        "48": "icons\/Icon48.png",
        "64": "icons\/Icon64.png",
        "128": "icons\/Icon128.png"
    },
    "permissions": [
        "",
        "*:\/\/*\/*",
        "contextMenus",
        "activeTab",
        "tabs",
        "background",
        "unlimitedStorage",
        "storage"
    ],
    "browser_action": {
        "default_popup": "pages\/popup.html"
    },
    "background": {
        "persistent": false,
        "page": "pages\/background.html"
    },
    "options_page": "pages\/options.html",
    "commands": {
        "openLinkHistory": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "windows": "Ctrl+Shift+H",
                "mac": "Ctrl+Shift+H"
            },
            "description": "Opens the favorites\/history page"
        }
    },
    "content_scripts": [
        {
            "js": [
                "js\/manifest.js",
                "js\/vendor.js",
                "js\/content.js"
            ],
            "css": [
                "css\/content-frame.css",
                "css\/content.css"
            ],
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "default_locale": "en",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "web_accessible_resources": [
        "js\/content.js",
        "css\/content.css",
        "fonts\/element-icons.ttf"
    ]
}