Learn pdf opener
Opens pdfs in learn in a new tab
Что такое Learn pdf opener?
Learn pdf opener - это расширение Chrome, разработанное caldwellbenjamin8, и его основная функция - "Opens pdfs in learn in a new tab".
Скачать файл CRX расширения Learn pdf opener
Скачайте файлы расширений Learn pdf opener в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | bdgfjdopnpnddliipiophkoenicppjfo |
Официальный URL | https://chrome.google.com/webstore/detail/learn-pdf-opener/bdgfjdopnpnddliipiophkoenicppjfo |
Описание | Opens pdfs in learn in a new tab |
Размер файла | 16.52 KB |
Количество установок | 15 |
Текущая Версия | 2.0 |
Последнее Обновление | 2015-09-04 |
Дата публикации | 2015-09-04 |
Рейтинг | 5.00/5 Всего 5 оценок |
Разработчик | caldwellbenjamin8 |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } |