Feedly Background Tab
Open Feedly Links in Background Tab using shortcut key
Что такое Feedly Background Tab?
Feedly Background Tab - это расширение Chrome, разработанное Aaron Saray, и его основная функция - "Open Feedly Links in Background Tab using shortcut key".
Снимки экрана расширения
Скачать файл CRX расширения Feedly Background Tab
Скачайте файлы расширений Feedly Background Tab в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Are you a power user of Feedly - but just wish the 'v' key would open tabs in the background? This extension is for you! Now, when you are viewing articles in list view, press ';' and the new tab opens in the background. Or, if you'd like, customize your shortcut key in the options. Now supports Cloudly, including PRO!
Основная информация о расширении
Название | Feedly Background Tab |
ID | gjlijkhcebalcchkhgaiflaooghmoegk |
Официальный URL | https://chromewebstore.google.com/detail/feedly-background-tab/gjlijkhcebalcchkhgaiflaooghmoegk |
Описание | Open Feedly Links in Background Tab using shortcut key |
Размер файла | 15.99 KB |
Количество установок | 4,009 |
Текущая Версия | 0.13 |
Последнее Обновление | 2017-08-11 |
Дата публикации | 2017-08-11 |
Рейтинг | 3.96/5 Всего 79 оценок |
Разработчик | Aaron Saray |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/aaronsaray/feedlybackgroundtab |
URL страницы помощи | https://github.com/aaronsaray/feedlybackgroundtab |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Feedly Background Tab", "version": "0.13", "manifest_version": 2, "description": "Open Feedly Links in Background Tab using shortcut key", "content_scripts": [ { "matches": [ "*:\/\/*.feedly.com\/*" ], "js": [ "js\/keypress.js" ] } ], "background": { "scripts": [ "js\/background.js" ] }, "options_page": "options.html", "permissions": [ "http:\/\/www.feedly.com\/*", "http:\/\/cloud.feedly.com\/*", "https:\/\/cloud.feedly.com\/*", "storage" ], "minimum_chrome_version": "21", "icons": { "128": "images\/icon_128.png" } } |