MS Doc Link

Handle MS Office Document links in a better way

Qu'est-ce que MS Doc Link ?

MS Doc Link est une extension Chrome développée par stocki87, et sa fonction principale est "Handle MS Office Document links in a better way".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension MS Doc Link

Téléchargez les fichiers d'extension MS Doc Link au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom MS Doc Link MS Doc Link
ID khildacmciagghamickjajfmhcbnkjhp
URL Officiel https://chromewebstore.google.com/detail/ms-doc-link/khildacmciagghamickjajfmhcbnkjhp
Description Handle MS Office Document links in a better way
Taille du Fichier 492 KB
Nombre d'Installations 4,247
Version Actuelle 1.3.1
Dernière Mise à Jour 2019-08-21
Date de Publication 2019-08-21
Évaluation 3.86/5 Total 7 Évaluations
Développeur stocki87
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/stockbal/msofficelink-ext/blob/master/README.md
Langues Prises en Charge 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"
    ]
}