MS Doc Link

Handle MS Office Document links in a better way

Wat is MS Doc Link?

MS Doc Link is een Chrome-extensie ontwikkeld door stocki87, en de belangrijkste functie is "Handle MS Office Document links in a better way".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie MS Doc Link

Download MS Doc Link-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam MS Doc Link MS Doc Link
ID khildacmciagghamickjajfmhcbnkjhp
Officiële URL https://chromewebstore.google.com/detail/ms-doc-link/khildacmciagghamickjajfmhcbnkjhp
Beschrijving Handle MS Office Document links in a better way
Bestandsgrootte 492 KB
Aantal Installaties 4,247
Huidige Versie 1.3.1
Laatst Bijgewerkt 2019-08-21
Publicatiedatum 2019-08-21
Beoordeling 3.86/5 Totaal 7 Beoordelingen
Ontwikkelaar stocki87
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/stockbal/msofficelink-ext/blob/master/README.md
Ondersteunde Talen 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"
    ]
}