Feedly Background Tab
Open Feedly Links in Background Tab using shortcut key
¿Qué es Feedly Background Tab?
Feedly Background Tab es una extensión de Chrome desarrollada por Aaron Saray, y su función principal es "Open Feedly Links in Background Tab using shortcut key".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Feedly Background Tab
Descarga archivos de extensión Feedly Background Tab en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | Feedly Background Tab |
ID | gjlijkhcebalcchkhgaiflaooghmoegk |
URL Oficial | https://chromewebstore.google.com/detail/feedly-background-tab/gjlijkhcebalcchkhgaiflaooghmoegk |
Descripción | Open Feedly Links in Background Tab using shortcut key |
Tamaño del Archivo | 15.99 KB |
Cantidad de Instalaciones | 4,009 |
Versión Actual | 0.13 |
Última Actualización | 2017-08-11 |
Fecha de Publicación | 2017-08-11 |
Calificación | 3.96/5 Total de 79 Calificaciones |
Desarrollador | Aaron Saray |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/aaronsaray/feedlybackgroundtab |
URL de la Página de Ayuda | https://github.com/aaronsaray/feedlybackgroundtab |
Idiomas Soportados | 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" } } |