Learn pdf opener

Opens pdfs in learn in a new tab

Co to jest Learn pdf opener?

Learn pdf opener to rozszerzenie Chrome opracowane przez caldwellbenjamin8, a jego główną funkcją jest „Opens pdfs in learn in a new tab”.

Pobierz plik CRX rozszerzenia Learn pdf opener

Pobierz pliki rozszerzeń Learn pdf opener w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Learn pdf opener Learn pdf opener
ID bdgfjdopnpnddliipiophkoenicppjfo
Oficjalny URL https://chrome.google.com/webstore/detail/learn-pdf-opener/bdgfjdopnpnddliipiophkoenicppjfo
Opis Opens pdfs in learn in a new tab
Rozmiar pliku 16.52 KB
Liczba instalacji 15
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2015-09-04
Data Publikacji 2015-09-04
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper caldwellbenjamin8
Typ Płatności free
Obsługiwane Języki 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"
    ]
}