MS Doc Link

Handle MS Office Document links in a better way

Cos'è MS Doc Link?

MS Doc Link è un'estensione di Chrome sviluppata da stocki87, e la sua funzione principale è "Handle MS Office Document links in a better way".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione MS Doc Link

Scarica i file di estensione MS Doc Link in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome MS Doc Link MS Doc Link
ID khildacmciagghamickjajfmhcbnkjhp
URL Ufficiale https://chromewebstore.google.com/detail/ms-doc-link/khildacmciagghamickjajfmhcbnkjhp
Descrizione Handle MS Office Document links in a better way
Dimensione del File 492 KB
Conteggio Installazioni 4,247
Versione Corrente 1.3.1
Ultimo Aggiornamento 2019-08-21
Data di Pubblicazione 2019-08-21
Valutazione 3.86/5 Totale 7 Valutazioni
Sviluppatore stocki87
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/stockbal/msofficelink-ext/blob/master/README.md
Lingue Supportate 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"
    ]
}