MS Doc Link

Handle MS Office Document links in a better way

What is MS Doc Link?

MS Doc Link is a Chrome extension developed by stocki87, and its main feature is "Handle MS Office Document links in a better way".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download MS Doc Link Extension CRX File

Download MS Doc Link extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name MS Doc Link MS Doc Link
ID khildacmciagghamickjajfmhcbnkjhp
Official URL https://chromewebstore.google.com/detail/ms-doc-link/khildacmciagghamickjajfmhcbnkjhp
Description Handle MS Office Document links in a better way
File Size 492 KB
Installation Count 4,247
Current Version 1.3.1
Last Updated 2019-08-21
Publish Date 2019-08-21
Rating 3.86/5 Total 7 Ratings
Developer stocki87
Email [email protected]
Payment Type free
Extension Website https://github.com/stockbal/msofficelink-ext/blob/master/README.md
Supported Languages 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"
    ]
}