Learn pdf opener

Opens pdfs in learn in a new tab

Cos'è Learn pdf opener?

Learn pdf opener è un'estensione di Chrome sviluppata da caldwellbenjamin8, e la sua funzione principale è "Opens pdfs in learn in a new tab".

Scarica il file CRX dell'estensione Learn pdf opener

Scarica i file di estensione Learn pdf opener 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

                        Open the pdf you are currently viewing on uwaterloo learn in a new tab. To use either click on the icon or press control+shift+M or command+shift+M on mac. To change your keyboard shortcut go to chrome://extensions and key assignment for Open pdf in new tab under Learn pdf opener, using the 'Keyboard shortcuts' link at the bottom right of the page.                    

Informazioni di Base sull'Estensione

Nome Learn pdf opener Learn pdf opener
ID bdgfjdopnpnddliipiophkoenicppjfo
URL Ufficiale https://chrome.google.com/webstore/detail/learn-pdf-opener/bdgfjdopnpnddliipiophkoenicppjfo
Descrizione Opens pdfs in learn in a new tab
Dimensione del File 16.52 KB
Conteggio Installazioni 15
Versione Corrente 2.0
Ultimo Aggiornamento 2015-09-04
Data di Pubblicazione 2015-09-04
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore caldwellbenjamin8
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Learn pdf opener",
    "description": "Opens pdfs in learn in a new tab",
    "version": "2.0",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "index.js"
        ],
        "persistent": false
    },
    "commands": {
        "open-pdf": {
            "suggested_key": {
                "default": "Ctrl+Shift+M",
                "windows": "Ctrl+Shift+M",
                "mac": "Command+Shift+M",
                "chromeos": "Ctrl+Shift+M",
                "linux": "Ctrl+Shift+M"
            },
            "description": "Open pdf in new tab"
        }
    },
    "permissions": [
        "activeTab"
    ]
}